/*$box-shadow: (*/
/**/ /*"sm": 0 0 0.375rem 0 rgba(46, 38, 61, 0.18), //*/
/**/ /*"md": 0 0 0.625rem 0 rgba(46, 38, 61, 0.2), //*/
/**/ /*"lg": 0 0 1rem 0 rgba(46, 38, 61, 0.22) //
);*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*$box-shadow: (*/
/**/ /*"sm": 0 0 0.375rem 0 rgba(46, 38, 61, 0.18), //*/
/**/ /*"md": 0 0 0.625rem 0 rgba(46, 38, 61, 0.2), //*/
/**/ /*"lg": 0 0 1rem 0 rgba(46, 38, 61, 0.22) //
);*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
.AvatarEditor {
  display: grid;
  grid-template-columns: 350px 3fr;
  gap: 1rem;
}
.AvatarEditor #AvatarPreview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.AvatarEditor #AvatarOptions {
  padding: 0;
}
.AvatarEditor #AvatarOptions .multitab__header {
  display: flex;
  flex-wrap: wrap;
}
.AvatarEditor #AvatarOptions .multitab__header__tab {
  padding: 0.5rem;
  color: var(--fg-light);
  border-bottom: 1px solid var(--bg-dark);
}
.AvatarEditor #AvatarOptions .multitab__header__tab--active {
  font-weight: bold;
  color: var(--primary-dark);
  border-color: var(--primary);
}
.AvatarEditor #AvatarOptions .multitab__body__tab {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.5rem;
}
.AvatarEditor #AvatarOptions .multitab__body__tab__option {
  aspect-ratio: 1;
  border: 1px solid var(--primary);
}
.AvatarEditor #AvatarOptions .multitab__body__tab__option--active {
  background: red;
}

.avatar-editor {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 350px 1fr;
  align-items: start;
}
@media (max-width: 768px) {
  .avatar-editor {
    grid-template-columns: 1fr;
  }
}
.avatar-editor__preview {
  position: sticky;
  top: 0.5rem;
  z-index: 10000;
}
.avatar-editor__preview__image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: var(--bg-light);
  border-radius: 0.5rem;
  min-height: 300px;
}
.avatar-editor__preview__image img {
  width: 100%;
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  transition: all 0.2s ease-out;
}
.avatar-editor__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.avatar-editor .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.avatar-editor .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.avatar-editor .form-control, .avatar-editor .form-select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background-color: var(--bg);
  border: 1px solid var(--bg-dark);
  border-radius: 0.25rem;
  color: var(--fg);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.avatar-editor .form-control:focus, .avatar-editor .form-select:focus {
  border-color: var(--primary);
}
.avatar-editor .form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}
.avatar-editor .form-check.form-switch {
  display: flex;
  align-items: center;
}
.avatar-editor .form-check.form-switch .form-check-input {
  appearance: none;
  width: 2.5rem;
  height: 1.25rem;
  background-color: var(--bg-dark);
  border-radius: calc(infinity * 1px);
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
}
.avatar-editor .form-check.form-switch .form-check-input::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(1.25rem - 4px);
  height: calc(1.25rem - 4px);
  background-color: var(--white);
  border-radius: 50%;
  transition: transform 0.3s;
}
.avatar-editor .form-check.form-switch .form-check-input:checked {
  background-color: var(--primary);
}
.avatar-editor .form-check.form-switch .form-check-input:checked::after {
  transform: translateX(100%);
}

/*# sourceMappingURL=Account.css.map */
