:root {
  --color-primary: #f22e5b;
  --color-secondary: #ffba16;
  --color-selfgym: #3c00e8;
}

.mukta-extralight {
  font-family: "Mukta", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.mukta-light {
  font-family: "Mukta", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.mukta-regular {
  font-family: "Mukta", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.mukta-medium {
  font-family: "Mukta", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.mukta-semibold {
  font-family: "Mukta", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.mukta-bold {
  font-family: "Mukta", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.mukta-extrabold {
  font-family: "Mukta", sans-serif;
  font-weight: 800;
  font-style: normal;
}
body {
  font-family: "Mukta", sans-serif !important;
}

main > .container,
main > .container-fluid {
  padding: 30px 15px 20px;
}

.footer {
  background-color: #343434;
  font-size: 0.9em;
  height: 60px;
}

.footer > .container,
.footer > .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
}

.not-set {
  color: #c55;
  font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after,
a.desc:after {
  content: "";
  left: 3px;
  display: inline-block;
  width: 0;
  height: 0;
  border: solid 5px transparent;
  margin: 4px 4px 2px 4px;
  background: transparent;
}

a.asc:after {
  border-bottom: solid 7px #212529;
  border-top-width: 0;
}

a.desc:after {
  border-top: solid 7px #212529;
  border-bottom-width: 0;
}

.grid-view th,
.grid-view td:last-child {
  white-space: nowrap;
}

.grid-view .filters input,
.grid-view .filters select {
  min-width: 50px;
}

.hint-block {
  display: block;
  margin-top: 5px;
  color: #999;
}

.error-summary {
  color: #a94442;
  background: #fdf7f7;
  border-left: 3px solid #eed3d7;
  padding: 10px 20px;
  margin: 0 0 15px 0;
}

.navbar {
  background-color: var(--color-selfgym);
}

/* align the logout "link" (button in form) of the navbar */
.navbar form > button.logout {
  padding-top: 7px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
  .navbar form > button.logout {
    display: block;
    text-align: left;
    width: 100%;
    padding: 10px 0;
  }
}

.navbar form > button.logout:focus,
.navbar form > button.logout:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
}

.navbar form > button.logout:focus {
  outline: none;
}

/* style breadcrumb widget as in previous bootstrap versions */
.breadcrumb {
  background-color: var(--bs-gray-200);
  border-radius: 0.25rem;
  padding: 0.75rem 1rem;
}

.breadcrumb-item > a {
  text-decoration: none;
}

.container-branch {
  background-color: #fff;
  border-radius: 7px;
  height: 250px;
  color: #3c00e8;
}

.container-plan {
  border-radius: 7px;
}

.name_filiale {
  color: #3f3f3f;
  text-align: center;
  font-family: Work Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}

.logo_filiale {
  width: 100px;
  border-radius: 7px;
}

.filiale_info {
  color: #3f3f3f;
  font-family: Work Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.action_button {
  font-size: 13.5px;
  background-color: var(--color-selfgym);
  color: white;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action_button:hover {
  filter: brightness(70%);
  background-color: var(--color-selfgym) !important;
  color: white !important;
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary);
  filter: brightness(70%);
  border-color: var(--color-primary);
}

.btn-info {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-info:hover {
  filter: brightness(70%);
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.sd-btn--action:hover {
  background-color: var(--sjs-primary-backcolor);
  filter: brightness(50%);
}

.subtitle {
  color: var(--sjs-primary-backcolor);
}

/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.show-modal {
  outline: none;
  border: none;
  cursor: pointer;
  color: #fff;
  border-radius: 6px;
  font-size: 1.2rem;
  padding: 15px 22px;
  background: #4a98f7;
  transition: 0.3s ease;
  box-shadow: 0 10px 18px rgba(52, 87, 220, 0.18);
}
.show-modal:hover {
  background: #2382f6;
}
.bottom-sheet {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  pointer-events: none;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.1s linear;
}
.bottom-sheet.show {
  opacity: 1;
  pointer-events: auto;
}
.bottom-sheet .sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: #000;
}
.bottom-sheet .content {
  width: 100%;
  position: relative;
  background: #fff;
  max-height: 100vh;
  height: 50vh;
  max-width: 1150px;
  padding: 25px 30px;
  transform: translateY(100%);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  transition: 0.3s ease;
}
.bottom-sheet.show .content {
  transform: translateY(0%);
}
.bottom-sheet.dragging .content {
  transition: none;
}
.bottom-sheet.fullscreen .content {
  border-radius: 0;
  overflow-y: hidden;
}
.bottom-sheet .header {
  display: flex;
  justify-content: center;
}
.header .drag-icon {
  cursor: grab;
  user-select: none;
  padding: 15px;
  margin-top: -15px;
}
.header .drag-icon span {
  height: 4px;
  width: 40px;
  display: block;
  background: #c7d0e1;
  border-radius: 50px;
}
.bottom-sheet .body {
  height: 100%;
  overflow-y: auto;
  padding: 15px 0 40px;
  scrollbar-width: none;
}
.bottom-sheet .body::-webkit-scrollbar {
  width: 0;
}
.bottom-sheet .body h2 {
  font-size: 1.8rem;
}
.bottom-sheet .body p {
  margin-top: 20px;
  font-size: 1.05rem;
}

.main-bg {
  position: relative;
  min-height: 100vh;
}

.background-layer {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: -webkit-fill-available !important;
  background-image: url("../images/main_bg.jpeg");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(50%);
  z-index: -1;
}

/* Su mobile usa scroll normale per performance */
@media (max-width: 768px) {
  .background-layer {
    background-attachment: scroll !important;
  }
}

.init-text {
  color: white;
  font-size: 36px;
  font-weight: 500;
}

/* .sd-title.sd-element__title {
  display: none !important;
} */

.sd-element__title .sd-element__num {
  display: none !important;
}

.sd-root-modern .sd-container-modern__title .sd-header__text h3 {
  font-size: large;
  text-transform: uppercase;
}

.message {
  text-transform: uppercase;
  margin-top: 50px;
}
.main-bg {
  height: 100%;
}

.badges_button {
  display: flex;
  justify-content: center;
}
.btn-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5px;
  width: fit-content;
  margin: auto;
}

.category-btn {
  background-color: var(--color-selfgym);
  padding: 20px;
  color: white;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 500px;
}

.container-plan {
  background-color: white;
  height: 200px;
}

@media (max-width: 992px) {
  .btn-group {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
}

.fa-solid.fa-location-dot {
  color: var(--color-selfgym);
}
.fa-solid.fa-phone {
  color: var(--color-selfgym);
}
