:root {
  --color-red: #c8241d;
  --color-black: #111111;
  --color-white: #ffffff;
  --color-muted: #555555;
  --color-line: #e6e6e6;
  --color-yellow: #ffbd58;
  --layout: 1200px;
}

* {
  margin: 0;
  padding: 0;
}

html,
body,
div,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
blockquote,
fieldset,
input,
textarea,
hr {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
address,
caption,
cite,
code,
th {
  font-size: 1em;
  font-weight: normal;
  font-style: normal;
}

ul,
ol {
  list-style: none;
}

fieldset,
img,
hr {
  border: none;
}

caption,
th {
  text-align: left;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  vertical-align: top;
}

form {
  margin: 0px;
  padding: 0px;
  display: inline;
}

label {
  display: block;
}

::-moz-placeholder {
  color: #9aa2a6;
}

::placeholder {
  color: #9aa2a6;
}

input {
  border: none;
  font: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
}

body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  text-rendering: auto;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-display: optional;
  /*font-display: swap;*/
  line-height: 1.6;
  background-color: var(--color-white);
  color: var(--color-black);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-size: 100%;
}

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

h1,
h2,
h3,
h4 {
  line-height: 1.1em;
  letter-spacing: -0.045em;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.center {
  margin: auto;
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.separator {
  margin: 10px 0;
  border-bottom: 1px solid #9aa2a6;
}

.nothing {
  margin: 30px;
  padding: 0;
  color: #9aa2a6;
  font-size: 16px;
  font-style: italic;
  text-align: left;
}

.nothing-call-to-action {
  display: block;
  margin: 20px;
  font-style: normal;
}

.more-content-btn {
  display: block;
  padding: 10px 0;
  cursor: pointer;
  font-weight: bold;
  color: #23272a;
}

#wrapper {
  display: block;
  margin: auto;
  /* equal to footer height */
  /* margin-bottom: -430px; */
}
#wrapper:after {
  content: "";
  display: block;
  /* height: 430px; */
}

.clear {
  clear: both;
}

.space {
  display: block;
  margin: 10px;
}

#header__AccountActivationMessage {
  padding: 12px;
  background: #c8241d;
  color: #fff;
  font-size: 14px;
  border-radius: 1px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#response_error {
  padding: 12px;
  background: #c8241d;
  color: #fff;
  font-size: 14px;
  border-radius: 1px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#response_ok {
  padding: 12px;
  background: #0e8161;
  color: #fff;
  font-size: 14px;
  border-radius: 1px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#response_info {
  padding: 12px;
  background: #154571;
  color: #fff;
  font-size: 14px;
  border-radius: 1px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#response_warning {
  padding: 12px;
  background: #f9881d;
  color: #23272a;
  font-size: 14px;
  border-radius: 1px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.alert {
  padding: 15px;
  border: 1px solid transparent;
}

.alert-info {
  background: #154571;
  color: #ffffff;
}

.alert-success {
  background: #0e8161;
  color: #ffffff;
}

.alert-warning {
  background: #f9881d;
  color: #000000;
}

.alert-danger {
  background: #c8241d;
  color: #ffffff;
}

/* Msg Highlight */
.info-msg,
.success-msg,
.warning-msg,
.error-msg {
  margin: 10px 0;
  padding: 10px;
  border-radius: 3px 3px 3px 3px;
}

.info-msg {
  color: #059;
  background-color: #bef;
}

.success-msg {
  color: #270;
  background-color: #dff2bf;
}

.warning-msg {
  color: #9f6000;
  background-color: #feefb3;
}

.error-msg {
  color: #d8000c;
  background-color: #ffbaba;
}

/* Icons */
.__icons {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  background-size: contain;
  background-repeat: no-repeat;
}

.__icon-search {
  background-image: url(/assets/imgs/icons/search.svg);
}

.__icon-ext {
  background-image: url(/assets/imgs/icons/square-new-window.svg);
}

.__icon-email {
  background-image: url(/assets/imgs/icons/square-email.svg);
}

#main-header-logo {
  display: inline-block;
  min-width: 190px;
  width: 190px;
  height: 80px;
}

#default-logo {
  position: relative;
  width: 100%;
  height: 100%;
  display: inline-block;
  cursor: pointer;
  background-image: url("/assets/imgs/musyance/logo-black.svg");
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center center;
}

#default-logo small {
  position: absolute;
  bottom: 10px;
  right: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #9aa2a6;
}

@media only screen and (max-width: 40em) {
  #main-header-logo {
    min-width: auto;
  }
  #default-logo small {
    display: none;
  }
  #mainHeader .site-brand-by {
    font-size: 0.82rem;
  }
}
@media only screen and (max-width: 25em) {
  /* #default-logo {
    background-image: url($miniLogo);
    background-size: 18%;
  } */
  /*#default-logo {
    background-image: url($mainLogo);
    background-size: 70%;
  }*/
}
#main-header-search {
  margin-right: 10px;
}

#main-header-search form {
  display: flex;
}

#main-header-search input {
  padding: 10px 14px;
  border: 1px solid #111;
  font-size: 16px;
  line-height: 1;
  outline: none;
}

#main-header-search input:focus {
  border-color: #c8241d;
}

#main-header-search button {
  padding: 10px 16px;
  border: 1px solid #c8241d;
  border-left: none;
  background: #c8241d;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

#main-header-search button:hover {
  background: #111;
  border-color: #111;
}

#mainHeader {
  background: #fff;
  border-bottom: 1px solid #111;
}

#mainHeader .container {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 14px 16px 12px;
}

#mainHeader .mainHeaderLeft,
#mainHeader .mainHeaderMiddle,
#mainHeader .mainHeaderRight {
  flex: 1;
}

.site-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: #111;
  text-decoration: none;
  line-height: 1.1;
}

.site-logo {
  display: block;
  width: min(248px, 62vw);
  height: auto;
}

.site-brand-title {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #111;
}

.site-brand-by {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #6b6b6b;
  white-space: nowrap;
}

.site-brand-by em {
  font-style: normal;
  font-weight: 600;
  color: #c8241d;
  letter-spacing: 0.01em;
}

#mainHeader .site-brand-by {
  margin-top: 10px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.site-slogan {
  margin-top: 8px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #111;
  letter-spacing: 0.01em;
}

.site-brand--footer {
  gap: 2px;
}

.site-brand--footer .site-logo {
  width: min(176px, 52vw);
}

.site-brand--footer .site-brand-by {
  margin-top: 6px;
  font-size: 0.8rem;
}

.site-nav {
  border-top: 1px solid #111;
}

.site-nav-list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: block;
  padding: 14px 28px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
}

.nav-item > a:hover,
.nav-item.open > a {
  color: #c8241d;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 320px;
  background: #fff;
  border: 1px solid #111;
  z-index: 30;
  padding: 8px 0;
  list-style: none;
}

.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 12px 18px;
  color: #111;
}

.nav-dropdown a strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.nav-dropdown a span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #444;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.nav-dropdown a:hover {
  background: #111;
  color: #fff;
}

.nav-dropdown a:hover span {
  color: #ddd;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: 8px;
  padding: 0;
  border: 1px solid #111;
  background: #fff;
  cursor: pointer;
  position: relative;
  z-index: 40;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #111;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#headerSocialIcons {
  display: flex;
}

#headerSocialIcons .header-social-icon {
  padding: 10px;
}

#headerSocialIcons img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

#headerSearchIcons {
  display: none;
}

#headerSearchIcons .header-search-icon {
  padding: 10px;
}

#headerSearchIcons img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}

#mainHeader .mainHeaderMiddle {
  text-align: center;
}

#mainHeader .mainHeaderRight {
  display: flex;
  align-items: center;
  justify-content: right;
}

@media (max-width: 60em) {
  #main-header-search {
    display: none;
  }
}

@media (max-width: 40em) {
  #headerSocialIcons {
    display: none;
  }
  #headerSearchIcons {
    display: block;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    border-top: 1px solid #111;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav-list {
    flex-direction: column;
  }

  .nav-item > a {
    border-bottom: 1px solid #eee;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    border: none;
    border-bottom: 1px solid #eee;
    min-width: 0;
  }

  .nav-item:hover .nav-dropdown {
    display: none;
  }

  .nav-item.open .nav-dropdown {
    display: block;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
.site-footer {
  background: #fff;
  border-top: 1px solid #111;
  color: #111;
  padding: 40px 0 20px;
  font-size: 0.95rem;
}

.scrollup {
  text-align: center;
  margin-bottom: 20px;
}

.scrollup a {
  color: #c8241d;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

#footer-logo {
  margin: 0;
  padding: 0;
  width: 140px;
  height: 38px;
  background-image: url("/assets/imgs/musyance/logo-black.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.footer-logo {
  text-align: center;
  margin-bottom: 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-section {
  flex: 1 1 160px;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: #c8241d;
}

.footer-socials img {
  width: 18px;
  margin-right: 6px;
  vertical-align: middle;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  #footer-logo {
    display: none;
  }
  .footer-grid {
    flex-direction: column;
    align-items: center;
  }
  .footer-section {
    text-align: center;
  }
  .footer-socials {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}
/* Credits */
.credit-link {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  padding: 20px 0;
}

.credit-link a img {
  height: 36px;
  vertical-align: middle;
  margin-left: 5px;
  transition: opacity 0.3s;
}

.credit-link a:hover img {
  opacity: 0.7;
}

/* Paginazione */
.pagination {
  text-align: center;
}

.pagination {
  padding: 20px;
  margin-bottom: 20px;
}

.pagination a,
.pagination span,
.pagination select {
  display: inline-block;
  padding: 6px 14px;
  margin: 4px;
  border-radius: 0;
  border: 1px solid #111;
  background: #fff;
  font-size: 0.96rem;
  text-decoration: none;
  color: #111;
}

.pagination select {
  display: none;
  padding: 6px 13px;
}

.pagination a:hover {
  background: #eaeaea;
}

.pagination span.current {
  border: 1px solid #c8241d;
  background: #c8241d;
  color: #fff;
}

.page-error {
  min-height: 50vh;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
  background: #fff;
  color: #111;
}

.page-error h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #c8241d;
  line-height: 1;
  margin-bottom: 1rem;
}

.page-error p {
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  color: #333;
}

.page-error a {
  display: inline-block;
  padding: 0.7rem 1.3rem;
  background: #c8241d;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.page-error a:hover {
  background: #111;
  color: #fff;
}

/*@media screen and (max-width: 736px) {

    .pagination a,
    .pagination span {
        display: none;
    }

    .pagination a,
    .pagination span {
        display: none;
    }

    .pagination .current,
    ._pagination_prev,
    ._pagination_next,
    .pagination select {
        display: inline-block;
    }
}*/