/*! 
 * Copyright 2021 - Tutteo Ltd
 */
.flat-gradient-brand {
  background: linear-gradient(45deg, #33B1F8 37%, #6E90F6 100%);
}
.flat-gradient-pink {
  background: #FE9FC4;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 0;
  background-image: none;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease-in-out;
  --f-btn-padding-top: 9px;
  --f-btn-padding-left: 15px;
  padding: var(--f-btn-padding-top) var(--f-btn-padding-left);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.btn.disabled,
.btn[disabled] {
  cursor: not-allowed;
  pointer-events: none;
}
.btn .btn-loading-wrap,
.btn svg,
.btn img {
  display: flex;
  flex: 0 0 auto;
}
.btn.btn-icon-16 svg,
.btn.btn-icon-16 img {
  width: 16px;
  height: 16px;
}
.btn.btn-icon-24 svg,
.btn.btn-icon-24 img {
  width: 24px;
  height: 24px;
}
.btn.btn-icon-left .btn-loading-wrap,
.btn.btn-icon-left svg,
.btn.btn-icon-left img {
  margin: 0 10px 0 -2px;
}
.btn.btn-icon-right .btn-loading-wrap,
.btn.btn-icon-right svg,
.btn.btn-icon-right img {
  margin: 0 -2px 0 10px;
}
.btn.yellow .power .fill,
.btn.yellow .power path {
  fill: url(#paint0_linear_2173_5291);
}
.btn.yellow .power .gradient-start {
  stop-color: var(--f-power-start);
}
.btn.yellow .power .gradient-middle {
  stop-color: var(--f-power-middle);
}
.btn.yellow .power .gradient-end {
  stop-color: var(--f-power-stop);
}
.btn:hover.yellow .power .gradient-start,
.btn:active.yellow .power .gradient-start {
  stop-color: var(--f-power-hover-start);
}
.btn:hover.yellow .power .gradient-middle,
.btn:active.yellow .power .gradient-middle {
  stop-color: var(--f-power-hover-middle);
}
.btn:hover.yellow .power .gradient-end,
.btn:active.yellow .power .gradient-end {
  stop-color: var(--f-power-hover-stop);
}
.btn.disabled.yellow .fill,
.btn[disabled].yellow .fill,
.btn.disabled.yellow path,
.btn[disabled].yellow path {
  fill: var(--f-grey-disabled-content);
}
.btn-content {
  flex: 0 1 auto;
}
.btn-small {
  --f-btn-padding-top: 5px;
  --f-btn-padding-left: 12px;
}
.btn-large {
  --f-btn-padding-top: 12px;
  --f-btn-padding-left: 15px;
  font-size: 16px;
  line-height: 22px;
}
.btn-fill {
  --f-btn-fill: var(--f-primary);
  --f-btn-fill-dark: var(--f-primary-dark);
  --f-btn-text: #fff;
  color: var(--f-btn-text);
  background: var(--f-btn-fill);
  border: 1px solid transparent;
}
.btn-fill.ink {
  --f-btn-fill: var(--f-ink);
  --f-btn-fill-dark: var(--f-ink);
}
.btn-fill.red {
  --f-btn-fill: var(--f-safe-red);
  --f-btn-fill-dark: #DB3A41;
}
.btn-fill.green {
  --f-btn-fill: var(--f-happy-green);
  --f-btn-fill-dark: #72BC09;
}
.btn-fill.grey {
  --f-btn-fill: var(--f-ink-10);
  --f-btn-fill-dark: var(--f-ink-10);
  --f-btn-text: var(--f-ink);
}
.btn-fill.yellow {
  --f-btn-fill: linear-gradient(331.58deg, var(--f-power-start) 12.38%, var(--f-power-middle) 25.87%, var(--f-power-stop) 79.51%);
  border: none;
  padding: calc(var(--f-btn-padding-top) + 1px) calc(var(--f-btn-padding-left) + 1px);
}
.btn-fill.yellow:not(:disabled) .power .fill,
.btn-fill.yellow:not(:disabled) .power path {
  fill: var(--f-white);
}
.btn-fill:hover,
.btn-fill:active {
  color: var(--f-btn-text);
  background: var(--f-btn-fill-dark);
}
.btn-fill:hover.yellow,
.btn-fill:active.yellow {
  --f-btn-fill-dark: linear-gradient(331.58deg, var(--f-power-hover-start) 12.38%, var(--f-power-hover-middle) 25.87%, var(--f-power-hover-stop) 79.51%);
}
.btn-fill:focus-visible:not(:active) {
  color: var(--f-btn-text);
  background: var(--f-btn-fill);
  box-shadow: inset 0px 0px 0px 3px var(--f-btn-fill-dark);
}
.btn-fill:focus-visible:not(:active).yellow {
  --f-btn-fill: linear-gradient(331.58deg, var(--f-power-hover-start) 12.38%, var(--f-power-hover-middle) 25.87%, var(--f-power-hover-stop) 79.51%);
  --f-btn-fill-dark: var(--f-power-border);
}
.btn-fill .fill,
.btn-fill path {
  fill: var(--f-btn-text);
}
.btn-fill.disabled,
.btn-fill[disabled] {
  background: var(--f-ink-10);
  color: var(--f-grey-disabled-content);
}
.btn-fill.disabled .fill,
.btn-fill[disabled] .fill,
.btn-fill.disabled path,
.btn-fill[disabled] path {
  fill: var(--f-grey-disabled-content);
}
.btn-outline {
  --f-btn-color: var(--f-primary);
  --f-btn-color-dark: var(--f-primary-dark);
  --f-btn-border-color: var(--f-btn-color);
  --f-btn-border-hover-color: var(--f-btn-color-dark);
  --f-btn-border-focus-color: var(--f-btn-color-dark);
  --f-btn-background: var(--f-bg-1);
  background: var(--f-btn-background);
  border: 1px solid var(--f-btn-border-color);
  color: var(--f-btn-color);
}
.btn-outline.ink {
  --f-btn-color: var(--f-ink);
  --f-btn-color-dark: var(--f-ink);
  --f-btn-border-color: var(--f-grey-2);
  --f-btn-border-hover-color: var(--f-grey-4);
  --f-btn-border-focus-color: var(--f-primary-dark);
  --f-btn-background-disabled: var(--f-grey-2);
}
.btn-outline.ink.disabled,
.btn-outline.ink[disabled] {
  background: var(--f-ink-10);
  border: 1px solid transparent;
}
.btn-outline.subdue {
  --f-btn-color: var(--f-subdue);
  --f-btn-color-dark: var(--f-subdue);
  --f-btn-border-color: var(--f-grey-2);
  --f-btn-border-hover-color: var(--f-grey-4);
  --f-btn-border-focus-color: var(--f-primary-dark);
}
.btn-outline.subdue.disabled,
.btn-outline.subdue[disabled] {
  background: var(--f-ink-10);
  border: 1px solid transparent;
}
.btn-outline.white {
  border-color: var(--f-white);
  color: var(--f-white);
  --f-btn-color: var(--f-white);
  --f-btn-color-dark: var(--f-white);
  --f-btn-border-focus-color: var(--f-white);
  --f-btn-background: transparent;
}
.btn-outline.white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.btn-outline.white.disabled,
.btn-outline.white[disabled] {
  background: var(--f-ink-10);
  border: 1px solid transparent;
}
.btn-outline.yellow {
  background: linear-gradient(331.58deg, var(--f-power-start) 12.38%, var(--f-power-middle) 25.87%, var(--f-power-stop) 79.51%);
  border: 1px solid var(--f-power-border);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-outline.red {
  --f-btn-color: var(--f-safe-red);
  --f-btn-color-dark: var(--f-safe-red);
}
.btn-outline .fill,
.btn-outline path {
  fill: var(--f-btn-color);
}
.btn-outline:hover,
.btn-outline:active {
  border: 1px solid var(--f-btn-border-hover-color);
  color: var(--f-btn-color-dark);
}
.btn-outline:hover.yellow,
.btn-outline:active.yellow {
  background: linear-gradient(331.58deg, var(--f-power-hover-start) 12.38%, var(--f-power-hover-middle) 25.87%, var(--f-power-hover-stop) 79.51%);
  border: 1px solid var(--f-power-border);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-outline:hover .fill,
.btn-outline:active .fill,
.btn-outline:hover path,
.btn-outline:active path {
  fill: var(--f-btn-color-dark);
}
.btn-outline:focus-visible:not(:active) {
  box-shadow: inset 0px 0px 0px 3px var(--f-btn-border-focus-color);
  color: var(--f-btn-color-dark);
}
.btn-outline:focus-visible:not(:active).yellow {
  --f-btn-border-focus-color: var(--f-power-border);
}
.btn-outline.disabled,
.btn-outline[disabled] {
  color: var(--f-grey-disabled-content);
  border: 1px solid var(--f-grey-disabled-container);
}
.btn-outline.disabled.yellow,
.btn-outline[disabled].yellow {
  -webkit-text-fill-color: var(--f-grey-disabled-content);
}
.btn-outline.disabled .fill,
.btn-outline[disabled] .fill,
.btn-outline.disabled path,
.btn-outline[disabled] path {
  fill: var(--f-grey-disabled-content);
}
.btn-ghost {
  --f-btn-color: var(--f-primary);
  --f-btn-color-dark: var(--f-primary-dark);
  background: transparent;
  border: 3px solid transparent;
  margin: calc(var(--f-btn-padding-top) * -1) -3px;
  padding-left: 0;
  padding-right: 0;
  color: var(--f-btn-color);
}
.btn-ghost.red {
  --f-btn-color: var(--f-safe-red);
  --f-btn-color-dark: var(--f-safe-red);
}
.btn-ghost.subdue {
  --f-btn-color: var(--f-subdue);
  --f-btn-color-dark: var(--f-ink);
}
.btn-ghost.yellow {
  background: linear-gradient(331.58deg, var(--f-power-start) 12.38%, var(--f-power-middle) 25.87%, var(--f-power-stop) 79.51%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-ghost:hover,
.btn-ghost:active {
  color: var(--f-btn-color-dark);
}
.btn-ghost:hover.yellow,
.btn-ghost:active.yellow {
  background: linear-gradient(331.58deg, var(--f-power-hover-start) 12.38%, var(--f-power-hover-middle) 25.87%, var(--f-power-hover-stop) 79.51%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-ghost:focus-visible:not(:active) {
  border: 3px solid var(--f-btn-color-dark);
  color: var(--f-btn-color-dark);
}
.btn-ghost:focus-visible:not(:active).yellow {
  border-color: var(--f-power-border);
  outline: none;
}
.btn-ghost.disabled,
.btn-ghost[disabled] {
  color: var(--f-disabled-content);
}
.btn-ghost.disabled.subdue,
.btn-ghost[disabled].subdue {
  color: var(--f-subdue-10);
}
.btn-ghost.disabled.yellow,
.btn-ghost[disabled].yellow {
  -webkit-text-fill-color: var(--f-grey-disabled-content);
}
.btn-nav-grey {
  background: rgba(54, 60, 80, 0.08);
  border: 0;
  border-radius: 4px;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease-in-out;
  font-family: var(--f-font-common);
  color: var(--f-subdue);
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}
.btn-nav-grey:hover,
.btn-nav-grey:focus {
  color: var(--f-ink);
}
.btn-nav-grey:hover .fill,
.btn-nav-grey:focus .fill {
  transition: all 0.2s ease-in-out;
  fill: var(--f-ink);
}
.btn-nav-grey:focus {
  box-shadow: inset 0px 0px 0px 2px var(--f-subdue);
}
/**
 *
 *
 *     DEPRECATED
 *     DEPRECATED
 *
 *
 */
.btn-drive {
  background: #4488FC;
  border: 1px solid #4488FC;
  color: #fff;
}
.btn-drive:hover,
.btn-drive:focus {
  box-shadow: inset 0px -22px 10px 0px rgba(54, 108, 201, 0.2);
  color: #fff;
}
.btn-dark {
  border: none;
  color: white !important;
  font-weight: 500;
  background-color: rgba(19, 22, 38, 0.65);
  border-radius: 40px;
}
.btn-dark .icon {
  margin-right: 8px;
}
.btn-dark:hover {
  background-color: rgba(19, 22, 38, 0.85);
}
.btn-azure-gradient {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 16px;
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  box-shadow: 0px 5px 14px 0px rgba(40, 48, 79, 0), 0px 2px 4px 0px rgba(40, 48, 79, 0.2), inset 0px -1px 4px 0px rgba(23, 78, 138, 0.09);
}
.btn-azure-gradient svg {
  margin-right: 8px;
  vertical-align: middle;
}
.btn-azure-gradient:hover,
.btn-azure-gradient:focus,
.btn-azure-gradient:active {
  box-shadow: 0px 5px 14px 0px rgba(40, 48, 79, 0.2), 0px 2px 4px 0px rgba(40, 48, 79, 0.2), inset 0px -1px 4px 0px rgba(23, 78, 138, 0.09);
}
.btn-azure-gradient[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
}
.btn-azure-gradient,
.btn-azure-gradient:hover,
.btn-azure-gradient:focus,
.btn-azure-gradient:active {
  background-image: linear-gradient(-180deg, #39D8D8 0%, #23B3C9 100%);
  color: #fff;
}
.btn-cta {
  padding: 12px 20px;
  background: var(--f-bg-0);
  border-color: var(--f-primary);
  color: var(--f-primary);
}
.btn-unfollow span.unfollow {
  display: none;
}
.btn-unfollow:hover {
  background: transparent;
  border: 1px solid var(--f-safe-red);
  color: var(--f-safe-red);
}
.btn-unfollow:hover span.unfollow {
  display: inline-block;
}
.btn-unfollow:hover span.following {
  display: none;
}
.ngclipboard-input {
  opacity: 0;
  z-index: -1;
  position: absolute;
}
.cards-visib-transition {
  transition: visibility ease-in-out 0.4s, opacity 0.4s ease-in-out;
}
.cards-hidden-transition {
  transition: visibility ease-in-out 0.2s, opacity 0.2s ease-in-out;
}
.cards-score {
  margin: 60px -31px 0 0;
}
.card-score {
  position: relative;
  width: 236px;
  height: 280px;
  float: left;
  margin: 0 26px 26px 0;
  border-radius: 8px;
}
.card-score > a {
  display: block;
  height: 100%;
  width: 100%;
  padding: 30px 30px 0 30px;
}
.card-placeholder {
  background: #F8F8FA;
  border: 1px dashed var(--f-grey-4);
  border-radius: 8px;
  text-align: center;
  box-shadow: inset 0px -130px 40px 0px rgba(244, 244, 246, 0);
}
.card-placeholder a {
  padding-top: 126px;
}
.card-placeholder:hover {
  box-shadow: inset 0px -130px 40px 0px #f4f4f6;
}
.card-placeholder.card-score a {
  padding-top: 106px;
}
.card-placeholder .text {
  margin-top: 24px;
  font-weight: 500;
  font-size: 14px;
  color: var(--f-subdue);
  letter-spacing: 0.99px;
  line-height: 16px;
}
.card-upgrade {
  background-image: linear-gradient(-135deg, #F2F6FB 0%, #EDF2FA 100%);
  border-radius: 8px;
}
.card-upgrade .text {
  margin-top: 9px;
  font-weight: 500;
  font-size: 14px;
  color: var(--f-subdue);
  letter-spacing: 1px;
  line-height: 20px;
}
.card-upgrade .cta {
  text-align: center;
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
}
.card-upgrade .btn {
  margin: 0;
  display: inline-block;
}
.wcard.gs {
  position: relative;
  max-width: 675px;
  height: 320px;
  margin: 0 auto;
  z-index: 9;
}
.wcard.gs .wrapper {
  text-align: center;
}
.wcard.gs .wrapper a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 60px;
}
.wcard.gs .wrapper img {
  max-width: none;
}
.wcard.gs .wrapper h2 {
  color: var(--f-subdue);
  margin: 35px auto 45px auto;
}
.content-class-detail .wcard.gs {
  margin-top: 0;
}
.content-user {
  margin-left: 0;
  margin-right: 0;
}
.dashboard-header-profile.my,
.dashboard-header-profile.user {
  margin-bottom: 40px;
}
.dashboard-header-profile:not(.my) .profile-head {
  margin-bottom: 150px;
}
.dashboard-header-profile .actions,
.dashboard-header-profile .settings {
  padding-bottom: 25px;
}
.dashboard-header-profile.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: -10;
}
@media (max-width: 768px) {
  .dashboard-header-profile.fixed {
    display: none;
  }
}
.profile-head {
  text-align: center;
}
.profile-head .avatar {
  width: 67px;
  height: 67px;
  border-radius: 67px;
  border-width: 3px;
}
.profile-head h1 {
  margin: 22px 30px 6px 30px;
}
.profile-head .bio {
  margin: 0 30px;
  font-size: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 24px;
  word-break: break-word;
  word-wrap: break-word;
}
.profile-head .wcard.my {
  margin: 5px auto 30px auto;
}
.profile-head .wcard.my .wrapper {
  background: transparent;
  box-shadow: none;
  margin-top: auto;
  min-height: 0;
  padding: 0px 30px;
}
.profile-head .wcard.my .number {
  color: #fff;
}
.profile-head .wcard.my .label {
  color: rgba(255, 255, 255, 0.6);
}
.profile-head .wcard.my ul {
  margin-top: 0;
}
.profile-head-short {
  margin-top: 14px;
  padding-bottom: 16px;
}
.profile-head-short > a,
.profile-head-short h1 {
  display: inline;
}
.profile-head-short h1 {
  position: relative;
  top: 5px;
  margin-left: 16px;
}
.profile-head-short .actions {
  padding-bottom: 0;
}
.profile-counters-wrapper [class*="grid-"] > * {
  margin-left: 10px;
}
.profile-counters-wrapper .grid-1 > * {
  width: 100%;
  margin-left: 0;
}
.profile-counters-wrapper .wcard span.label {
  font-size: 10px;
}
.profile-counters-wrapper .wcard span.number {
  font-size: 16px;
}
.profile-counters-wrapper .wcard .stats a {
  display: block;
  width: 100%;
  height: 100%;
}
.content-profile-main .content-score-list-gs {
  margin-top: 40px;
}
.content-profile-main .content-score-list-gs {
  margin-top: -45px;
}
.content-profile-main.loader-container {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
.content-profile-main.loader-container .loader i:after {
  background-color: #E7E8EC;
}
.content-follow-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1178px;
}
/* Wide display following / follower user in dashboard */
.widget-followed {
  flex: 0 0 253px;
  background-color: #FBFBFB;
  border: 1px solid #e7e8ec;
  border-radius: 6px;
  margin-bottom: 4px;
  margin-right: 4px;
  padding: 30px;
  text-align: center;
}
.widget-followed .user-avatar {
  height: 28px;
}
.widget-followed .user-avatar img {
  width: 28px;
}
.widget-followed .user-text .name {
  margin: 8px auto;
  color: var(--f-ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.84px;
  line-height: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.widget-followed .user-text .counters {
  height: 30px;
  margin-bottom: 16px;
}
.widget-followed .user-text .counter {
  font-size: 12px;
  line-height: 17px;
}
.widget-followed .user-text .counter .number {
  color: var(--f-ink);
}
.widget-followed .user-text .counter .label {
  color: var(--f-grey-2);
  text-transform: capitalize;
}
.widget-followed .btn,
.widget-followed .btn:hover {
  font-size: 12px;
}
.widget-followed .follow-button {
  line-height: 14px;
  letter-spacing: 0.86px;
  border-radius: 50px;
}
.widget-followed .follow-button:hover {
  box-shadow: none !important;
}
.widget-followed .btn-follow {
  color: var(--f-primary);
  border-color: var(--f-primary);
  background-color: transparent;
}
.widget-followed .btn-follow:hover {
  color: white;
  background-color: var(--f-primary);
}
.widget-followed .btn-unfollow {
  color: white;
  border-color: #5FBC09;
  background-color: var(--f-happy-green);
}
.widget-followed .btn-unfollow:hover {
  border-color: var(--f-subdue);
  background-color: var(--f-grey-4);
}
.navigation {
  position: fixed;
  will-change: transform;
  top: -500px;
  width: 100%;
  z-index: 150;
  margin: auto;
  transition: all ease-in 0.3s;
}
.navigation .profile-navbar {
  max-width: 1024px;
  box-shadow: 0px 1px 2px 0px rgba(61, 78, 119, 0.22);
  margin: 64px auto 0;
  border-radius: 0 0 3px 3px;
  transition: top ease-out 0.5s;
}
.navigation .profile-navbar .user {
  display: block;
}
.navigation.opened {
  top: 0;
}
@media (max-width: 900px) {
  .navigation {
    display: none;
  }
}
.profile-navbar {
  display: flex;
  align-items: center;
  height: 73px;
  min-height: 73px;
  background: rgba(2, 12, 41, 0.85);
  padding: 0 30px;
}
@media (max-width: 730px) {
  .profile-navbar #private-scores-link,
  .profile-navbar #public-scores-link {
    display: none;
  }
}
@media (max-width: 350px) {
  .profile-navbar {
    display: none;
  }
}
.profile-navbar .user {
  display: none;
  margin-right: 30px;
}
.profile-navbar ul {
  flex: 1;
  margin-top: 0px;
  text-align: left;
  padding-left: 0;
}
.profile-navbar ul li {
  display: inline-block;
  padding: 0 20px;
}
@media (max-width: 750px) {
  .profile-navbar ul li {
    padding: 0 8px;
  }
}
.profile-navbar ul li a {
  display: block;
  color: #858A9D;
}
.profile-navbar ul li a .title {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.71px;
  line-height: 11px;
  text-transform: uppercase;
}
.profile-navbar ul li a .count {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}
.profile-navbar ul li.active a {
  color: white;
}
.profile-navbar ul li:first-child {
  padding-left: 0;
}
.profile-navbar .action-buttons {
  display: flex;
  flex-direction: row;
}
@media (max-width: 750px) {
  .profile-navbar .action-buttons .settings {
    display: none;
  }
}
.profile-navbar .action-buttons .settings:hover svg rect {
  stroke: white;
  transition: all ease-in 0.2s;
}
.profile-navbar .action-buttons .settings:hover svg path {
  fill: white;
  transition: all ease-in 0.2s;
}
.profile-navbar .action-buttons .analytics {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  border: 1px solid #858A9D;
  margin-right: 15px;
}
.profile-navbar .action-buttons .analytics svg {
  position: relative;
}
.profile-navbar .action-buttons .analytics:hover,
.profile-navbar .action-buttons .analytics.active {
  border-color: white;
}
.profile-navbar .action-buttons .analytics:hover svg rect,
.profile-navbar .action-buttons .analytics.active svg rect {
  stroke: white;
}
.profile-navbar .action-buttons .analytics:hover svg path,
.profile-navbar .action-buttons .analytics.active svg path {
  fill: white;
}
.profile-navbar .action-buttons .follow-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  background-color: white;
  border-color: white;
  transition: all ease-in 0.3s;
}
.profile-navbar .action-buttons .follow-button .icon {
  margin-left: 2px;
}
.profile-navbar .action-buttons .follow-button svg g {
  stroke: inherit;
  stroke-width: inherit;
}
.profile-navbar .action-buttons .follow-button:hover {
  box-shadow: none !important;
}
.settings-title span.subtitle {
  font-size: 70%;
  font-style: italic;
  margin-left: 10px;
}
.profile-card {
  margin: 0 auto 50px auto;
  box-shadow: 0 1px 2px rgba(62, 78, 119, 0.22);
  color: #fff;
}
.profile-card .dashboard-header {
  box-shadow: none;
}
.profile-card.theme-cover-pic .dashboard-header {
  background: rgba(2, 12, 41, 0.85);
}
.profile-card .profile-card-content {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.profile-card .profile-card-content .profile-navbar {
  border-radius: 3px;
  margin-top: 24px;
  box-shadow: 0 5px 30px 5px rgba(2, 12, 41, 0.42);
}
@media (max-width: 500px) {
  .profile-card .profile-card-content .profile-navbar {
    padding: 0 10px;
  }
}
.profile-card .profile-card-content h1 {
  font-weight: 300;
  margin: 24px 30px 6px 30px;
  line-height: 33px;
}
.profile-card .profile-card-content p {
  line-height: 24px;
}
@media (max-width: 950px) {
  .profile-card {
    margin-bottom: 30px;
  }
}
.deprecated-profile-priv-scores {
  margin-bottom: 80px;
}
.deprecated-profile-priv-scores .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #E7E8EC;
}
.deprecated-profile-priv-scores .description {
  flex: 1 1 auto;
  font-size: 18px;
  line-height: 20px;
  color: var(--f-ink);
  letter-spacing: 0.4px;
  line-height: 21px;
}
.deprecated-profile-priv-scores .description a {
  color: var(--f-primary);
}
.profile-email-validation {
  min-height: 240px;
  margin-top: 66px;
  background: linear-gradient(45deg, #091F34 0, #030A20 100%);
}
.profile-email-validation .content {
  max-width: 1024px;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}
.profile-email-validation h3 {
  color: #fff;
  line-height: 26px;
  margin-bottom: 20px;
}
.profile-email-validation p {
  font-size: 18px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.8);
}
.profile-email-validation .actions {
  margin-top: 30px;
}
.profile-email-validation .actions a {
  margin-top: 8px;
  color: #fff;
  display: block;
}
.profile-email-validation .actions .btn {
  margin: 0;
}
.profile-email-validation .actions .sent {
  color: #fff;
  line-height: 46px;
}
.profile-email-validation a {
  color: #fff;
}
.editor-account-not-verified {
  display: block;
  width: 100%;
  height: 42px;
  line-height: 42px;
  padding: 0 40px;
  background: linear-gradient(0deg, #FFA045, #FF8840);
}
.event-item {
  display: block;
  border-bottom: 1px solid #e6e6e6;
  padding: 16px 0;
  min-height: 48px;
}
.event-item .widget-score {
  margin: 20px 0 0px 60px;
}
.event-avatar {
  display: inline-block;
}
.event-title {
  line-height: 48px;
}
.event-avatar {
  margin-right: 10px;
  float: left;
}
.event-date {
  float: right;
  margin-top: 4px;
}
.event-date,
.event-delete {
  line-height: 48px!important;
}
.event-delete {
  margin-left: 15px;
}
.event-show-more {
  margin-top: 20px;
}
.modal-delete-upgrade .modal-header {
  padding: 0 0 14px 0;
}
.modal-delete-upgrade p {
  text-align: center;
}
.content-public-scores {
  margin-bottom: 30px;
}
.content-private-scores {
  background-color: #ECECF0;
  box-shadow: inset 0 3px 2px rgba(0, 0, 0, 0.02);
}
.content-private-scores .display-options {
  display: none;
}
.content-private-scores .display-options-clearfix {
  border: 0 !important;
}
.content-private-scores .card-material .collaborators-popular .user-avatar img {
  box-shadow: 0 0 0 2px #ECECF0;
}
.card-material.card-placehoder {
  background-color: var(--f-primary);
  border: 1px solid var(--f-primary-dark);
  box-sizing: border-box;
  box-shadow: inset 0 -120px 100px rgba(38, 143, 244, 0);
  margin-bottom: 30px;
}
.card-material.card-placehoder a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 30px;
}
.card-material.card-placehoder .text {
  color: white;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 21px;
  max-width: 120px;
  text-align: center;
  margin-top: 34px;
  margin-left: auto;
  margin-right: auto;
}
.card-material.card-placehoder.upgrade .text {
  margin-top: 12px;
  max-width: 100%;
}
.card-material.card-placehoder .subtext {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1px;
  line-height: 20px;
  margin-top: 6px;
}
.card-material.card-placehoder.private-score a {
  padding-top: 60px;
}
.card-material.card-placehoder.private-score .text {
  margin-top: 42px;
}
.card-material.card-placehoder:hover {
  box-shadow: inset 0 -120px 100px var(--f-primary-dark);
}
.list-placeholder {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto 15px;
}
.list-placeholder .btn {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 14px;
  padding: 12px 28px;
  margin: 0 15px 15px 15px;
  min-width: 265px;
  text-align: center;
}
.list-placeholder .btn i {
  font-size: 16px;
  margin-right: 6px;
}
.list-placeholder .btn .text {
  vertical-align: middle;
}
.list-placeholder .btn:after {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.list-placeholder .btn:hover:after {
  opacity: 1;
}
.list-placeholder .public-score {
  background: #A0C4FC;
  border: 1px solid #8DB4F0;
  text-shadow: 0 1px 1px #8DB4F0;
  box-shadow: inset 0 -18px 12px rgba(141, 180, 240, 0);
}
.list-placeholder .public-score:hover {
  box-shadow: inset 0 -18px 12px #8DB4F0;
}
.list-placeholder .private-score {
  background: var(--f-grey-4);
  border: 1px solid var(--f-subdue);
  text-shadow: 0 1px 1px var(--f-subdue);
  box-shadow: inset 0 -18px 12px rgba(133, 143, 169, 0);
}
.list-placeholder .private-score:hover {
  box-shadow: inset 0 -18px 12px var(--f-subdue);
}
.content-score-list .content-score-list .display-options-clearfix {
  display: none;
}
.content-score-list .display-options {
  float: right;
  padding-bottom: 32px;
}
.content-score-list .display-options a.display {
  margin-left: 16px;
}
.content-score-list .display-options a.display span {
  position: relative;
}
.content-score-list .display-options a.display.view-list span {
  top: 1px;
}
.content-score-list .display-options a.display .active .fill {
  fill: var(--f-primary);
}
.content-score-list .display-options-clearfix {
  border-bottom: 1px solid #E7E8EC;
}
.content-score-list .collaborators .user {
  width: 22px !important;
}
.content-score-list .collaborators img {
  width: 22px;
}
.content-score-list .no-scores-content .no-scores {
  padding-top: 30px;
  flex: 1 1 100%;
  text-align: center;
}
.content-score-list .no-scores-content .no-scores p {
  color: var(--f-subdue);
  line-height: 24px;
}
.content-score-list .no-scores-content .no-scores .btn {
  margin-top: 30px;
}
.content-score-list .board-search {
  float: left;
  padding-bottom: 32px;
}
/* List display */
.list-score {
  margin: 30px 0;
}
.list-elem-score.list-class-shared.material .actions {
  display: none;
  visibility: hidden;
  opacity: 0;
}
.list-elem-score.list-class-shared.material .collaborators {
  visibility: visible;
  opacity: 1;
}
.list-elem-score {
  display: flex;
  align-content: center;
  position: relative;
  height: 74px;
  margin-bottom: -1px;
  border-bottom: 1px solid #e7e8ec;
  border-top: 1px solid #e7e8ec;
  padding: 32px / 2 0;
  width: 100%;
}
.list-elem-score .score-privacy {
  display: flex;
  align-items: center;
  margin-right: 22px;
}
.list-elem-score .badge-title {
  float: left;
  height: 42px;
  width: 65%;
  padding-right: 30px;
}
.list-elem-score .title-line {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--f-subdue);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.list-elem-score .title {
  transition: all 0.2s ease-in-out;
  color: var(--f-ink);
  font-weight: 500;
}
.list-elem-score .instruments {
  transition: all 0.2s ease-in-out;
  padding-left: 8px;
}
.list-elem-score .edited {
  color: var(--f-subdue);
  font-size: 10px;
  letter-spacing: 0.71px;
  line-height: 15px;
}
.list-elem-score .collaborators,
.list-elem-score .actions {
  height: 42px;
  width: calc(35% - 60px);
  margin-left: 60px;
  position: absolute;
  right: 0;
  text-align: right;
}
.list-elem-score .collaborators {
  display: flex;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  visibility: visible;
  opacity: 1;
  transition: visibility ease-in-out 0.4s, opacity 0.4s ease-in-out;
  padding: 7px 0px;
  white-space: nowrap;
  overflow: hidden;
}
.list-elem-score .collaborators .user {
  width: 22px !important;
}
.list-elem-score .collaborators img {
  width: 22px;
}
.list-elem-score .collaborators .user-avatar,
.list-elem-score .collaborators .user-extra-counter {
  margin: 0 7px;
  border: none;
}
.list-elem-score .collaborators .user-extra-counter {
  width: 28px;
  height: 28px;
  line-height: 26px;
  position: relative;
}
.list-elem-score .actions {
  visibility: hidden;
  opacity: 0;
  transition: visibility ease-in-out 0.2s, opacity 0.2s ease-in-out;
  padding: 12px 0;
}
.list-elem-score .actions > * {
  display: inline-block;
}
.list-elem-score .actions .fi {
  font-size: 16px;
}
.list-elem-score .actions .delete {
  margin-left: 20px;
}
.list-elem-score .actions a {
  color: var(--f-subdue);
}
.list-elem-score .player-container {
  display: none;
}
.list-elem-score .player-container:hover {
  display: none;
}
.list-elem-score .player-icons {
  visibility: hidden;
  opacity: 0;
}
.list-elem-score .player-icons.playing {
  visibility: visible;
  opacity: 1;
}
.list-elem-score .player-icons.playing .process-bars .bar {
  animation-play-state: running;
}
.list-elem-score:hover .title {
  color: var(--f-primary);
}
.list-elem-score:hover .title-line {
  color: #A0C4FC;
}
.list-elem-score:hover .collaborators {
  visibility: hidden;
  opacity: 0;
  transition: visibility ease-in-out 0.2s, opacity 0.2s ease-in-out;
}
.list-elem-score:hover .actions {
  visibility: visible;
  opacity: 1;
  transition: visibility ease-in-out 0.4s, opacity 0.4s ease-in-out;
}
.content-score-list-empty {
  text-align: center;
}
.content-score-list-empty h2 {
  font-size: 32px;
  font-weight: 300;
  line-height: 48px;
  margin-bottom: 14px;
}
.content-score-list-empty p {
  color: var(--f-subdue);
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 30px;
}
.content-score-list-empty button {
  padding: 12px 28px;
  margin-bottom: 24px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  letter-spacing: 0.86px;
  box-shadow: inset 0 -18px 12px rgba(38, 143, 244, 0);
}
.content-score-list-empty button:hover {
  box-shadow: inset 0 -18px 12px var(--f-primary-dark);
}
.process-bars {
  height: 25px;
  position: absolute;
  width: 13px;
  left: -33px;
  z-index: 15;
}
.widget-score-show-more,
.event-show-more {
  text-align: center;
  min-height: 40px;
  line-height: 40px;
  font-size: 18px;
  margin: 40px auto;
}
.widget-score-show-more a,
.event-show-more a {
  display: block;
}
.widget-score-show-more {
  background: var(--f-grey-2);
  border-radius: 4px;
  clear: left;
  box-shadow: inset 0 -18px 12px transparent;
}
.widget-score-show-more a {
  color: white;
  padding: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.86px;
  line-height: 16px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}
.widget-score-show-more.cards {
  margin-right: 32px;
}
.widget-score-show-more:hover {
  box-shadow: inset 0 -18px 12px #C5CDD1;
}
snippet-draw {
  display: flex;
  align-items: center;
  justify-content: center;
}
snippet-draw .snippet-draw {
  flex: 0 0 auto;
  padding: 30px;
  background: white;
  border-radius: 4px;
  box-shadow: 0 8px 14px rgba(40, 48, 79, 0.2), inset 0 2px 5px white;
  border: 1px solid #e7e8ec;
}
snippet-draw .snippet-draw svg.page line {
  stroke: black;
}
@keyframes player-loader-text {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes player-circle {
  0% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.66% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.76% {
    transform: matrix3d(0.01, 0, 0, 0, 0, 0.01, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  8.58% {
    transform: matrix3d(0.438, 0, 0, 0, 0, 0.438, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  12.29% {
    transform: matrix3d(0.89, 0, 0, 0, 0, 0.89, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  16.11% {
    transform: matrix3d(1.188, 0, 0, 0, 0, 1.188, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  19.82% {
    transform: matrix3d(1.273, 0, 0, 0, 0, 1.273, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  24.21% {
    transform: matrix3d(1.194, 0, 0, 0, 0, 1.194, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  28.5% {
    transform: matrix3d(1.059, 0, 0, 0, 0, 1.059, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  32.89% {
    transform: matrix3d(0.96, 0, 0, 0, 0, 0.96, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  37.18% {
    transform: matrix3d(0.931, 0, 0, 0, 0, 0.931, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  45.85% {
    transform: matrix3d(0.985, 0, 0, 0, 0, 0.985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  54.43% {
    transform: matrix3d(1.017, 0, 0, 0, 0, 1.017, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  71.78% {
    transform: matrix3d(0.996, 0, 0, 0, 0, 0.996, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  89.13% {
    transform: matrix3d(1.001, 0, 0, 0, 0, 1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
body:not(.touch) .card-score:hover .collaborators,
body:not(.touch) .card-score:hover .edited,
body:not(.touch) .card-score:hover .title,
body:not(.touch) .card-score:hover .instruments {
  visibility: hidden;
  opacity: 0;
  transition: visibility ease-in-out 0.4s, opacity 0.4s ease-in-out;
}
body:not(.touch) .card-score:hover .player-container {
  visibility: visible;
  opacity: 1;
  transition: visibility ease-in-out 0.4s, opacity 0.4s ease-in-out;
}
body:not(.touch) .card-score:hover .player-container svg {
  animation: player-circle 2100ms linear 1;
}
.card-score {
  /* Content */
}
.card-score .badge {
  position: absolute;
  width: 32px;
  height: 32px;
  top: -16px;
  right: -16px;
  border-radius: 32px;
  line-height: 32px;
  text-align: center;
}
.card-score .title {
  line-height: 20px;
  margin-bottom: 8px;
  text-align: center;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.card-score .instruments,
.card-score .player-container {
  margin: 20px 0;
}
.card-score .instruments {
  width: 100%;
  height: 100px;
  display: table;
  position: absolute;
  top: calc(50% - 75px);
  margin-left: -30px;
}
.card-score .instruments > div {
  width: 100%;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.card-score .instruments img {
  display: inline-block;
  vertical-align: middle;
  margin: 6px;
  height: 36px;
}
.card-score .instruments .icon-instrument {
  display: inline-block;
  vertical-align: middle;
  height: 36px;
  width: 36px;
  margin: 6px;
}
.card-score .instruments .icon-instrument svg {
  height: 36px;
  width: 36px;
}
.card-score .player-container {
  position: absolute;
  top: calc(50% - 75px);
  left: 0;
  width: 100%;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility ease-in-out 0.2s, opacity 0.2s ease-in-out;
}
.card-score .state span,
.card-score .privacy span {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.71px;
  line-height: 11px;
  color: var(--f-primary);
}
.card-score .state span {
  position: absolute;
  width: 100%;
  top: 45px;
  left: 0;
  text-align: center;
}
.card-score .state span.loading {
  animation: player-loader-text 3s infinite;
}
.card-score.theme-default circle {
  stroke: #e7e8ec;
}
.card-score.theme-default path {
  stroke: #49A5F8;
}
.card-score.theme-default .state a,
.card-score.theme-default .privacy a,
.card-score.theme-default .delete a {
  color: var(--f-subdue);
}
.card-score.theme-default .state span,
.card-score.theme-default .privacy span,
.card-score.theme-default .delete span,
.card-score.theme-default .state:hover span,
.card-score.theme-default .privacy:hover span,
.card-score.theme-default .delete:hover span {
  color: var(--f-subdue);
}
.card-score .collaborators {
  text-align: center;
}
.card-score .collaborators .user-avatar {
  width: 28px;
  margin: 3px;
}
.card-score .collaborators .user-extra-counter {
  width: 28px;
  height: 28px;
  line-height: 22px;
}
.card-score .collaborator-title {
  letter-spacing: 0.71px;
  text-transform: uppercase;
  font-size: 10px;
}
.card-score .bottom {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
}
.card-color .title {
  color: #fff;
  line-height: 24px;
}
.card-color .edited {
  color: rgba(255, 255, 255, 0.45);
}
.card-color .collaborator-title {
  color: #fff;
}
.card-outline {
  background: var(--f-bg-0);
  border: 2px solid #e7e8ec;
  transition: box-shadow 0.2s ease;
}
.card-outline:hover {
  border: 2px solid transparent;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.06), 0px 1px 4px 1px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease-in-out;
}
.card-outline .title {
  color: var(--f-ink);
}
.card-outline .edited .default {
  color: var(--f-primary);
}
.card-outline .collaborator-title {
  color: var(--f-subdue);
}
.card-dashboard .edited {
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.71px;
  line-height: 12px;
}
.card-dashboard .player-container {
  top: calc(50% - 75px);
}
.card-dashboard .collaborators {
  position: absolute;
  bottom: 14px;
  width: calc(100% -  2 * 30px);
}
.card-dashboard .delete,
.card-dashboard .privacy {
  display: inline-block;
  visibility: hidden;
  opacity: 0;
  transition: visibility ease-in-out 0.2s, opacity 0.2s ease-in-out;
}
.card-dashboard .delete a,
.card-dashboard .privacy a {
  display: block;
  padding: 10px;
  margin: -10px;
}
.card-dashboard .delete {
  float: right;
}
.card-dashboard .delete a {
  width: 35px;
  position: relative;
  top: 9px;
}
.card-dashboard .privacy {
  float: left;
}
.card-dashboard:hover .delete,
.card-dashboard:hover .privacy {
  visibility: visible;
  opacity: 1;
  transition: visibility ease-in-out 0.4s, opacity 0.4s ease-in-out;
}
.content-centered {
  height: calc(100% - 66px);
}
.content-score-access {
  position: relative;
  text-align: center;
  margin: 60px 0;
}
.content-score-access .icon {
  margin: 0 auto;
  margin-bottom: 25px;
}
.content-score-access h3 {
  color: var(--f-ink);
  font-size: 32px;
  font-weight: 300;
  line-height: 48px;
  margin-bottom: 14px;
}
.content-score-access p {
  color: var(--f-subdue);
  line-height: 24px;
  margin-bottom: 46px;
}
.content-score-access .buttons-container .btn {
  display: table;
  margin: auto;
}
.content-score-access .buttons-container .btn-large {
  padding: 14px 28px !important;
  margin-bottom: 35px;
}
.content-score-access.not-found .icon {
  height: 135px;
  width: 90px;
}
.content-score-access.request-access .icon {
  margin-bottom: 35px;
}
.content-score-access.request-access p {
  margin-bottom: 70px;
}
.flat-dashboard-public .main {
  margin: 75px 0;
}
.dashboard-header.theme-support,
.thbg.theme-support {
  background: linear-gradient(90deg, #687DA0 0%, #1B2135 100%);
}
.theme-support .fill {
  fill: #1B2135;
}
.theme-support .stroke {
  stroke: #1B2135;
}
.theme-support ul.navbar > li > a {
  color: white;
}
.support-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-top: 110px;
}
.support-header h1 {
  font-weight: 400;
  font-size: 38px;
  line-height: 49px;
  white-space: normal;
  margin: 0 auto 80px auto;
}
.content-support {
  display: flex;
  margin-bottom: 200px;
}
.content-support .illustration {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.content-support .illustration .icon {
  height: 64px;
  width: 64px;
}
@media (max-width: 700px) {
  .content-support {
    flex-wrap: wrap;
  }
  .content-support > * {
    flex: 1 0 100% !important;
    margin-bottom: 24px;
  }
}
.indiv-demography {
  margin: 60px 30px;
  text-align: center;
}
.indiv-demography .title {
  font-weight: 300;
  color: var(--f-ink);
  font-size: 32px;
  line-height: 48px;
  margin: 35px 0 14px 0;
}
@media (max-width: 690px) {
  .indiv-demography .title {
    font-size: 24px;
  }
}
@media (max-width: 540px) {
  .indiv-demography .title {
    font-size: 20px;
  }
}
@media (max-width: 460px) {
  .indiv-demography .title {
    font-size: 16px;
  }
}
.indiv-demography .survey {
  font-size: 16px;
  color: var(--f-ink);
  margin-top: 50px;
}
.indiv-demography .question {
  color: var(--f-ink);
  line-height: 48px;
}
.indiv-demography .qitem {
  text-align: left;
  max-width: 430px;
  margin: auto;
}
.indiv-demography .survey-key {
  display: block;
  line-height: 48px;
}
.indiv-demography .survey-key:hover,
.indiv-demography .survey-key.active {
  color: var(--f-ink);
}
.indiv-demography .survey-key:hover .survey-radio,
.indiv-demography .survey-key.active .survey-radio {
  background: var(--f-happy-green);
  border: 1px solid var(--f-happy-green);
}
.indiv-demography .survey-radio {
  display: inline-block;
  position: relative;
  top: 2px;
  margin-right: 16px;
  width: 16px;
  height: 16px;
  border-radius: 60px;
  background: #FFFFFF;
  border: 1px solid var(--f-grey-2);
}
.indiv-demography textarea {
  min-height: 100px;
}
.indiv-demography .cta {
  margin: 20px 0 45px 0;
}
.indiv-demography .cta .btn {
  display: inline-block;
}
.modal-upgrade {
  z-index: 1500;
  background: none;
}
.modal-upgrade .freemium-upgrade {
  max-width: 550px;
  margin: 230px auto 0;
  text-align: center;
}
.modal-upgrade .freemium-upgrade .modal-close-ext {
  top: 106px;
}
.modal-upgrade .freemium-upgrade .title {
  font-weight: 300;
  color: var(--f-primary);
  font-size: 32px;
  line-height: 48px;
  margin: 35px 0 14px 0;
}
.modal-upgrade .freemium-upgrade .description {
  color: var(--f-subdue);
  font-size: 16px;
  line-height: 24px;
}
.modal-upgrade .freemium-upgrade .cta {
  margin: 36px 0 30px 0;
}
.modal-upgrade .freemium-upgrade .cta .btn {
  display: inline-block;
}
.modal-upgrade-success #confettis {
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.modal-upgrade-success .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.modal-upgrade-success .wrap > div {
  text-align: center;
}
.modal-upgrade-success h1 {
  font-weight: 300;
  font-size: 32px;
  line-height: 48px;
  color: var(--f-primary);
  margin: 0 0 14px;
}
.modal-upgrade-success p {
  color: var(--f-ink);
  font-size: 14px;
  line-height: 24px;
}
@keyframes footer_settings {
  from {
    transform: translate(0, 40px);
  }
  to {
    transform: translate(0, 0);
  }
}
.card-material {
  width: 236px;
  height: 302px;
  background-color: white;
  box-shadow: 0 1px 2px rgba(62, 78, 119, 0.22);
  border-radius: 6px;
  margin: 0 26px 66px 0;
}
.card-material .title {
  color: var(--f-primary);
  font-size: 23px;
  font-weight: 400;
  line-height: 33px;
  max-height: 135px;
  position: relative;
  top: 70px;
  text-overflow: initial;
  white-space: normal;
}
.card-material .instruments {
  top: 0;
  left: 0;
  margin: 0;
  padding: 30px 16px;
}
.card-material .instruments .icon-instrument {
  display: inline-table;
  height: 26px;
  width: 26px;
  vertical-align: top;
  margin: 0 8px;
}
.card-material .instruments .icon-instrument svg {
  width: 26px;
}
.card-material .instruments .icon-instrument path {
  fill: var(--f-primary);
}
.card-material .instruments .icon-instrument:first-child {
  margin-left: 0;
}
.card-material .instruments .icon-instrument:last-child {
  margin-right: 0;
}
.card-material .instruments > div {
  vertical-align: top;
}
.card-material .round-progress-wrapper svg circle {
  stroke: #e7e8ec;
}
.card-material .round-progress-wrapper svg path {
  stroke: var(--f-primary);
}
.card-material .collaborators-popular {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  top: -30px;
  left: 0;
  text-align: left;
  min-height: 32px;
}
.card-material .collaborators-popular .user-avatar:first-child {
  margin: 3px 0 3px 0px;
}
.card-material .collaborators-popular .user-avatar:not(:first-child) {
  margin: 3px 0 3px -10px;
}
.card-material .collaborators-popular .user-avatar {
  width: 22px;
  height: 22px;
}
.card-material .collaborators-popular .user-avatar img {
  border: none;
  box-shadow: 0 0 0 2px var(--f-bg-1);
  width: 22px;
  height: 22px;
}
.card-material .collaborators-popular .user-extra-counter {
  width: 22px;
  height: 22px;
  line-height: 18px;
  border-color: var(--f-bg-1);
}
.card-material .collaborators-popular .power-owner svg g use {
  stroke: transparent;
}
.card-material .collaborators-popular .power-owner svg path {
  stroke: transparent;
}
.card-material .card-footer {
  height: 38px;
  top: -38px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  position: relative;
  overflow: hidden;
}
.card-material .card-footer-default,
.card-material .card-footer-settings {
  display: flex;
  text-align: right;
  border-top: 1px solid #E7E8EC;
  height: 38px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.card-material .card-footer-default a,
.card-material .card-footer-settings a {
  padding: 10px 15px 12px 15px;
}
.card-material .card-footer-default .footer-action:first-child,
.card-material .card-footer-settings .footer-action:first-child {
  margin-left: 0;
}
.card-material .card-footer-default .footer-action:last-child,
.card-material .card-footer-settings .footer-action:last-child {
  margin-right: 0;
}
.card-material .card-footer-default {
  justify-content: space-between;
  padding: 0 15px;
  border-top: 1px solid #E7E8EC;
}
.card-material .card-footer-left,
.card-material .card-footer-right {
  display: flex;
  margin-left: 1px;
  margin: 0 -15px;
  transition: all 0.2s ease-in-out;
}
@keyframes footerSliderUp {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}
.card-material .card-footer-settings {
  background: var(--f-ink);
  border-top: 1px solid var(--f-ink);
  position: absolute;
  width: 100%;
  top: 39px;
  transition: all 0.1s ease-in-out;
}
.card-material .card-footer-settings.active {
  top: 0;
}
.card-material .card-footer-settings.active .footer-action.action {
  animation-name: footer_settings;
  animation-duration: 0.2s;
  animation-fill-mode: both;
}
.card-material .card-footer-settings.active .footer-action.action:nth-child(2) {
  animation-delay: 0.05s;
}
.card-material .card-footer-settings.active .footer-action.action:nth-child(3) {
  animation-delay: 0.1s;
}
.card-material .card-footer-settings.active .footer-action.action:nth-child(4) {
  animation-delay: 0.15s;
}
.card-material .card-footer-settings.active .footer-action.action:nth-child(5) {
  animation-delay: 0.2s;
}
.card-material .footer-action.action .icon {
  height: 16px;
}
.card-material .footer-action.action .icon svg {
  height: 16px;
}
.card-material .footer-action.action .icon-close svg {
  height: 14px;
  vertical-align: middle;
}
.card-material .footer-action.likes.active svg path {
  fill: #FA4A77;
}
.card-material .card-content {
  border-radius: 6px;
}
.card-material .card-content:hover {
  box-shadow: 0 4px 15px 1px rgba(62, 78, 119, 0.22);
}
.card-material .card-content:hover .player-container {
  visibility: visible;
  opacity: 1;
}
.card-material .card-content:hover .title,
.card-material .card-content:hover .instruments {
  visibility: hidden;
  opacity: 0;
}
.card-material:hover .collaborators {
  visibility: visible;
  opacity: 1;
}
.card-material:hover .player-container {
  visibility: hidden;
  opacity: 0;
}
.card-material:hover .title,
.card-material:hover .instruments {
  visibility: visible;
  opacity: 1;
}
.card-material .card-profile {
  margin-bottom: 30px;
}
.list-elem-score.material .collaborators .user-avatar {
  margin: 0px 0 0px 8px;
}
.list-elem-score.material .collaborators .user-avatar img {
  box-shadow: none;
  border: none;
}
.list-elem-score.material .actions {
  display: flex;
  justify-content: flex-end;
  visibility: visible;
  opacity: 1;
}
.list-elem-score.material:hover .collaborators {
  visibility: visible;
  opacity: 1;
}
.card-material .social-interactions,
.list-elem-score.material .social-interactions {
  display: flex;
  justify-content: flex-start;
  align-content: center;
}
.card-material .social-interactions .footer-action:first-child,
.list-elem-score.material .social-interactions .footer-action:first-child {
  margin-left: 0;
}
.card-material .footer-action,
.list-elem-score.material .footer-action {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 15px;
  color: var(--f-subdue);
  padding: 0 8px;
  opacity: 1;
  visibility: visible;
}
.card-material.list-elem-score.material .footer-action .icon,
.list-elem-score.material.list-elem-score.material .footer-action .icon,
.card-material .card-footer-default .icon,
.list-elem-score.material .card-footer-default .icon {
  margin-right: 4px;
  height: 12px;
}
.card-material.list-elem-score.material .footer-action svg,
.list-elem-score.material.list-elem-score.material .footer-action svg,
.card-material .card-footer-default svg,
.list-elem-score.material .card-footer-default svg {
  height: 12px;
}
.card-material.list-elem-score.material .footer-action svg path,
.list-elem-score.material.list-elem-score.material .footer-action svg path,
.card-material .card-footer-default svg path,
.list-elem-score.material .card-footer-default svg path {
  fill: var(--f-grey-2);
  stroke-width: 0;
}
.card-material .footer-action.likes.active svg path,
.list-elem-score.material .footer-action.likes.active svg path {
  fill: #FA4A77;
}
.content-search {
  position: relative;
  margin-top: -10px;
  margin-bottom: 75px;
}
.content-search h1 {
  color: var(--f-ink);
}
.content-search .search-view-input {
  position: relative;
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid #e7e8ec;
  margin-bottom: 30px;
}
.content-search .search-view-input .search-view-icon {
  position: absolute;
  right: 0;
  top: 6px;
}
.content-search .search-view-input .search-view-icon svg {
  height: 16px;
  width: 16px;
}
.content-search .search-view-input .search-view-icon svg path {
  fill: var(--f-ink);
}
.content-search .search-view-input input {
  width: 100%;
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
  background-color: transparent;
  border: none;
}
.discover-scores {
  display: flex;
}
.ds-filters {
  flex: 0 0 200px;
  margin-right: 30px;
}
.ds-filters .filter {
  margin-bottom: 30px;
}
.ds-filters .filter .title {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.47px;
  line-height: 16px;
  color: var(--f-ink);
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid #E7E8EC;
  margin-bottom: 15px;
}
.ds-filters .filter .item {
  display: flex;
  align-items: center;
  height: 32px;
}
.ds-filters .filter .item.active .instru-icon path {
  fill: var(--f-primary);
}
.ds-filters .filter .instru-icon {
  display: flex;
  margin-right: 12px;
}
.ds-filters .filter .instru-icon,
.ds-filters .filter .instru-icon svg {
  width: 16px;
  height: 16px;
}
.ds-filters .filter .instru-icon path {
  fill: var(--f-subdue);
}
.ds-filters .filter .text {
  flex: 1 1 auto;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.47px;
  color: var(--f-ink);
}
.ds-filters .filter .count {
  font-size: 13px;
  letter-spacing: 0;
  line-height: 16px;
  color: var(--f-ink);
}
.ds-filters .feedback {
  display: block;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.47px;
  color: var(--f-ink);
  padding: 15px;
  background: var(--f-bg-0);
  border-radius: 4px;
}
@media (max-width: 850px) {
  .ds-filters {
    display: none;
  }
}
.ds-listing {
  flex: 1 1 auto;
  min-width: 0;
}
.ds-scores {
  background: var(--f-bg-0);
  border: 1px solid #E7E8EC;
  border-radius: 4px;
}
.ds-scores .ds-score:not(:last-child) {
  border-bottom: 1px solid #E7E8EC;
}
@keyframes placeHolderSearcScore {
  0% {
    background-position: -800px 0;
  }
  100% {
    background-position: 800px 0;
  }
}
@keyframes likeIcon {
  0% {
    transform: scale(1.2, 1.2);
  }
  20% {
    transform: scale(0, 0);
  }
  40% {
    transform: scale(1.2, 1.2);
  }
  60% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}
.ds-noresult {
  font-size: 16px;
  line-height: 22px;
  color: var(--f-ink);
}
.ds-noresult a {
  color: var(--f-primary);
}
.ds-score {
  min-height: 75px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.ds-score.loading {
  cursor: default;
  position: relative;
}
.ds-score.loading .ld-title,
.ds-score.loading .ld-sub {
  position: absolute;
  left: 20px;
  width: calc(100% - 40px);
  background: #f6f7f8;
  background: linear-gradient(to right, #eeeeee 8%, #e2e2e2 18%, #eeeeee 33%);
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderSearcScore;
  animation-timing-function: linear;
}
.ds-score.loading .ld-title {
  top: 15px;
  height: 20px;
}
.ds-score.loading .ld-title:before {
  position: absolute;
  content: ' ';
  right: 0;
  height: 20px;
  width: calc(100% - 300px);
  background: var(--f-bg-0);
}
.ds-score.loading .ld-sub {
  top: 45px;
  height: 14px;
}
.ds-score .player-container {
  display: none;
}
.ds-score .process-bars {
  position: relative;
  top: 0;
  left: 0;
  z-index: 0;
  height: 11px;
  margin-left: 8px;
}
.ds-score .player-icons {
  visibility: hidden;
  opacity: 0;
}
.ds-score .player-icons.playing {
  visibility: visible;
  opacity: 1;
}
.ds-score .player-icons.playing .process-bars .bar {
  animation-play-state: running;
}
.ds-score .ds-title-block {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin-right: 30px;
}
.ds-score .ds-title {
  display: flex;
  align-items: center;
  margin-top: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.ds-score .ds-title span {
  font-size: 16px;
  color: var(--f-ink);
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.ds-score .ds-title strong {
  font-weight: 400;
  color: var(--f-primary);
}
.ds-score .ds-ctype {
  margin-right: 5px;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  border-radius: 3px;
  height: 18px;
  padding: 3px 6px;
  white-space: nowrap;
}
.ds-score .ds-ctype.original {
  background: var(--f-flat-blue-10);
  color: var(--f-safe-blue);
}
.ds-score .ds-ctype.arrangement {
  background: hsla(291, 64%, 42%, 0.25);
  color: #9223a5;
}
.ds-score .ds-stats {
  display: flex;
  align-items: center;
  height: 30px;
}
.ds-score .ds-stat {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  color: var(--f-subdue);
  white-space: nowrap;
  padding: 0 6px;
}
.ds-score .ds-stat:first-child {
  padding: 0 6px 0 0;
}
.ds-score .ds-stat.like:hover svg {
  transform: scale(1.2, 1.2);
}
.ds-score .ds-stat.like.active svg {
  animation: likeIcon linear 0.5s 1;
}
.ds-score .ds-stat.like.active path {
  fill: #FA4A77;
}
.ds-score .ds-stat svg {
  margin-right: 4px;
  transition: all ease-out 0.3s;
}
.ds-score .ds-stat .fill {
  fill: var(--f-grey-2);
}
.ds-score .ds-instruments {
  flex: 0 0 auto;
  display: flex;
  margin-right: 30px;
}
.ds-score .ds-instruments img {
  height: 22px;
  width: 22px;
}
.ds-score .ds-instruments img:not(:last-child) {
  margin-right: 15px;
}
.ds-score .ds-instruments path {
  fill: var(--f-primary);
}
@media (max-width: 520px) {
  .ds-score .ds-instruments {
    display: none;
  }
}
.ds-score .ds-collaborators {
  flex: 0 0 65px;
  display: flex;
  justify-content: flex-end;
}
.ds-score .ds-collaborators .user {
  margin-left: -10px;
}
.power-up-small-msg {
  text-align: left;
  display: flex;
  align-items: center;
  border: 1px solid #FFC52D;
  border-radius: 6px;
  padding: 16px;
  line-height: 18px;
  color: var(--f-ink);
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  line-height: 20px;
}
.power-up-small-msg .btn-fill {
  flex: 1 1 auto;
  white-space: nowrap;
  margin-left: 16px;
}
.choice-method.power-upgrade {
  border: 1px solid #FFC52D;
}
.choice-method.power-upgrade .name {
  margin-bottom: 16px;
}
.choice-method.power-upgrade .power-upgrade-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.choice-method.power-upgrade .btn {
  flex: 0 0 auto;
  white-space: nowrap;
  margin-left: 16px;
}
.choice-method.power-upgrade .power-desc {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  line-height: 19px;
  color: var(--f-subdue);
}
.choice-method.power-upgrade img {
  flex: 0 0 48px;
  width: 48px;
  margin-right: 16px;
}
@media (max-width: 650px) {
  .choice-method.power-upgrade .power-upgrade-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .choice-method.power-upgrade .btn-fill {
    margin: 16px 0 0 0;
  }
  .choice-method.power-upgrade img {
    display: none;
  }
}
.mdoal-footer {
  padding-top: 0;
}
.modal-content .preference-elem {
  margin-bottom: 15px;
}
.modal-newscore .modal-dialog-container {
  width: 100%;
  max-width: 1024px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.modal-newscore .modal-dialog {
  width: 502px;
  z-index: 5;
  margin: 0 !important;
}
.modal-newscore .modal-dialog.instruments-selection-dialog {
  flex: 0 1 673px;
}
.modal-newscore .modal-dialog.score-overview {
  flex: 0 1 351px;
  height: 532px;
  z-index: 2;
}
.modal-newscore h3 {
  font-size: 32px;
  font-weight: 300;
  color: var(--f-ink);
  line-height: 37px;
}
.modal-newscore .assignment-no-scores {
  text-align: center;
}
.modal-newscore .form-control {
  height: auto;
}
.modal-newscore .title {
  min-height: 50px;
}
.modal-newscore .list-instruments,
.modal-newscore .continue-creation,
.modal-newscore .create-score {
  margin-top: 24px;
}
.modal-newscore .continue-creation .btn.btn-fill {
  padding: 14px 28px;
  width: 100%;
}
.modal-newscore .list-instruments .instrument-elem .remove {
  display: block;
  height: 16px;
  color: var(--f-subdue);
  font-size: 16px;
  line-height: 14px;
}
.modal-newscore .modal-content.create-score-content.validated .modal-header {
  padding-bottom: 0px;
}
.modal-newscore .modal-content.create-score-content .modal-header {
  padding-bottom: 42px;
}
.modal-newscore .modal-content.create-score-content .modal-footer {
  padding: 0;
}
.modal-newscore .modal-content.create-score-content .modal-footer .btn.btn-fill {
  width: 100%;
}
.modal-newscore .modal-content.create-score-content .import-score-footer {
  text-align: center;
  margin-top: 60px;
}
.modal-newscore .modal-content.create-score-content .import-score-footer .import-text-container {
  display: flex;
  align-items: center;
  align-content: center;
}
.modal-newscore .modal-content.create-score-content .import-score-footer .text {
  color: var(--f-subdue);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.93px;
  line-height: 15px;
  margin: 0 40px;
}
.modal-newscore .modal-content.create-score-content .import-score-footer .line {
  flex: 1;
  border-top: 1px solid #e7e8ec;
}
.modal-newscore .modal-content.create-score-content .import-score-footer .btn-import-score {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background-color: var(--f-primary-dark);
  box-shadow: 0 3px 8px rgba(38, 143, 244, 0.2);
  position: absolute;
  bottom: -26px;
  left: calc(50% - 26px);
  padding: 0;
}
@media (max-width: 500px), (max-height: 500px) {
  .modal-newscore .modal-content.create-score-content .import-score-footer .btn-import-score {
    position: initial;
    left: auto;
    bottom: auto;
    margin-top: 30px;
  }
}
.modal-newscore .modal-content.instruments-content {
  display: flex;
  flex-direction: column;
  padding: 60px;
  height: 592px;
}
.modal-newscore .modal-content.instruments-content .modal-header {
  flex: 0 0 auto!important;
  padding: 0;
  margin-bottom: 15px!important;
}
.modal-newscore .modal-content.instruments-content .modal-header h3 {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.84px;
}
.modal-newscore .modal-content.instruments-content .modal-header h3 span a {
  color: var(--f-subdue);
}
.modal-newscore .modal-content.instruments-content .modal-header h3 span.active a {
  color: var(--f-primary-dark);
}
.modal-newscore .modal-content.instruments-content .modal-header p {
  color: var(--f-subdue);
  font-size: 14px;
  line-height: 24px;
  margin-top: 16px;
}
.modal-newscore .modal-content.instruments-content .modal-body {
  flex: 1;
  padding: 0 15px;
  overflow: auto;
}
.modal-newscore .modal-content.instruments-content .score-overview-button {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -23px;
  bottom: calc(50% - 23px);
  position: absolute;
  background: white;
  border-radius: 46px;
  box-shadow: 0 5px 14px rgba(40, 48, 79, 0), 0 2px 4px rgba(40, 48, 79, 0.2), inset 0 -1px 4px rgba(23, 78, 138, 0.09);
}
.modal-newscore .modal-content.instruments-content .score-overview-button svg {
  width: 18px;
  height: 16px;
}
.modal-newscore .modal-content.instruments-content .modal-footer .tabs-option {
  margin-bottom: 24px;
}
.modal-newscore .modal-content.instruments-content .modal-footer .btn {
  max-width: 382px;
  width: 100%;
}
.modal-newscore .modal-content.instruments-content .modal-footer .instruments-selection {
  min-height: 14px;
  margin: 20px 0 0 0;
}
.modal-newscore .modal-content.score-overview-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 532px;
  padding: 30px;
  border-radius: 0 8px 8px 0;
}
.modal-newscore .modal-content.score-overview-content .modal-header {
  flex: 0 0 24px;
  margin-bottom: 56px;
  padding: 0;
}
.modal-newscore .modal-content.score-overview-content .modal-header .tabs-option {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-newscore .modal-content.score-overview-content .modal-header .tabs-option .wrap-switch {
  margin-right: 10px;
}
.modal-newscore .modal-content.score-overview-content .modal-header .tabs-option a {
  color: var(--f-ink);
}
.modal-newscore .modal-content.score-overview-content .modal-body {
  display: flex;
  flex: 1;
  padding: 0 15px;
  overflow: auto;
}
.modal-newscore .modal-content.score-overview-content .modal-body .modal-body-placeholder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--f-subdue);
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
.modal-newscore .modal-content.score-overview-content .modal-footer {
  padding: 0;
  margin-top: 20px;
}
.modal-newscore .modal-body.grey-body {
  border-radius: 3px;
  background: var(--f-bg-1);
  border: 1px solid #E7E8EC;
}
@media (max-height: 850px) {
  .modal-newscore p.intro {
    display: none;
  }
}
@media (max-width: 1024px) {
  .modal-newscore .modal-dialog-container {
    max-width: 100%;
  }
  .modal-newscore .modal-dialog-container .modal-dialog {
    height: 100%;
    max-height: 100vh;
    min-height: 0;
  }
  .modal-newscore .modal-dialog-container .modal-dialog.score-overview {
    flex: 1 1 460px;
  }
  .modal-newscore .modal-content.instruments-content,
  .modal-newscore .modal-content.score-overview-content {
    height: 100vh;
    max-height: 100vh;
    min-height: 0;
    border-radius: 0;
  }
  .modal-newscore .modal-content.instruments-content .modal-header h3,
  .modal-newscore .modal-content.score-overview-content .modal-header h3 {
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 1.26px;
  }
  .modal-newscore .modal-content.instruments-content .modal-header p,
  .modal-newscore .modal-content.score-overview-content .modal-header p {
    font-size: 21px;
    line-height: 36px;
    margin-top: 25px;
  }
  .modal-newscore .modal-close-ext {
    top: 20px;
    right: 20px;
  }
  .modal-newscore .modal-close-ext svg {
    width: 24px;
    height: 24px;
  }
  .modal-newscore .modal-close-ext svg path {
    stroke: var(--f-subdue);
  }
  .modal-newscore .modal-close-ext.cancel svg path {
    stroke: var(--f-subdue);
  }
  .modal-newscore .modal-content.score-overview-content {
    padding: 90px 45px;
  }
  .modal-newscore .modal-content.score-overview-content .modal-header {
    margin-bottom: 38px;
  }
  .modal-newscore .modal-content.score-overview-content .modal-body .modal-body-placeholder {
    font-size: 21px;
    line-height: 25px;
  }
  .modal-newscore .modal-content.score-overview-content .score-instrument-list .instrument-info .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
  }
  .modal-newscore .modal-content.score-overview-content .score-instrument-list .instrument-info .name {
    font-size: 21px;
    line-height: 25px;
  }
  .modal-newscore .modal-content.score-overview-content .score-instrument-list .action .icon {
    width: 21px;
    height: 21px;
  }
  .modal-newscore .score-instrument-list.template-list .score-instrument-list {
    border: none;
  }
  .modal-newscore .score-instrument-list.template-list .score-instrument-list .instrument-item {
    padding: 6px 0 6px 0;
    margin-left: 57px;
  }
  .modal-newscore .modal-content.instruments-content {
    flex: 1 1 auto;
    padding: 90px 38px;
  }
  .modal-newscore .modal-content.instruments-content .modal-header {
    margin-bottom: 23px;
    min-height: auto;
  }
  .modal-newscore .modal-content.instruments-content .instrument-group-list .instrument-group .icon,
  .modal-newscore .modal-content.instruments-content .instrument-group-list .instrument-info .icon {
    width: 21px;
    height: 21px;
  }
  .modal-newscore .modal-content.instruments-content .instrument-group-list .instrument-group .name,
  .modal-newscore .modal-content.instruments-content .instrument-group-list .instrument-info .name,
  .modal-newscore .modal-content.instruments-content .instrument-group-list .instrument-group .text,
  .modal-newscore .modal-content.instruments-content .instrument-group-list .instrument-info .text {
    font-size: 21px;
    line-height: 25px;
  }
}
@media (max-width: 768px) {
  .modal-newscore .modal-dialog-container {
    flex-direction: column;
    min-height: 100%;
    max-width: 100%;
  }
  .modal-newscore .modal-dialog-container .modal-dialog {
    height: auto;
    width: 100%;
    max-height: none;
    box-shadow: none;
  }
  .modal-newscore .modal-dialog-container .modal-dialog.score-creation {
    flex: 0;
  }
  .modal-newscore .modal-dialog-container .modal-dialog.score-overview {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
  }
  .modal-newscore .modal-content.instruments-content,
  .modal-newscore .modal-content.score-overview-content {
    height: auto;
    max-height: none;
    border-radius: 0;
    padding: 30px 16px;
    box-shadow: none;
  }
  .modal-newscore .modal-content.instruments-content .modal-header h3,
  .modal-newscore .modal-content.score-overview-content .modal-header h3 {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.86px;
  }
  .modal-newscore .modal-content.instruments-content .modal-header p,
  .modal-newscore .modal-content.score-overview-content .modal-header p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 15px;
  }
  .modal-newscore .modal-close-ext {
    top: 20px;
    right: 20px;
  }
  .modal-newscore .modal-close-ext svg {
    width: 18px;
    height: 18px;
  }
  .modal-newscore .modal-close-ext.cancel svg path {
    stroke: var(--f-subdue);
  }
  .modal-newscore .modal-content.instruments-content {
    flex: 1 1 auto;
  }
  .modal-newscore .modal-content.instruments-content .modal-header {
    margin-bottom: 23px;
    min-height: auto;
  }
  .modal-newscore .modal-content.instruments-content .modal-body {
    min-height: 260px;
    max-height: 260px;
  }
  .modal-newscore .modal-content.instruments-content .score-overview-button {
    bottom: 6px;
    right: calc(50% - 23px);
  }
  .modal-newscore .modal-content.instruments-content .instrument-group-list .instrument-group .icon,
  .modal-newscore .modal-content.instruments-content .instrument-group-list .instrument-info .icon {
    width: 16px;
    height: 16px;
  }
  .modal-newscore .modal-content.instruments-content .instrument-group-list .instrument-group .name,
  .modal-newscore .modal-content.instruments-content .instrument-group-list .instrument-info .name,
  .modal-newscore .modal-content.instruments-content .instrument-group-list .instrument-group .text,
  .modal-newscore .modal-content.instruments-content .instrument-group-list .instrument-info .text {
    font-size: 14px;
    line-height: 16px;
  }
  .modal-newscore .modal-content.score-overview-content {
    flex: 1 1 100%;
    height: 100%;
  }
  .modal-newscore .modal-content.score-overview-content .modal-header {
    margin-bottom: 15px;
  }
  .modal-newscore .modal-content.score-overview-content .modal-header h3 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 290px;
    text-align: center;
    margin: auto;
  }
  .modal-newscore .modal-content.score-overview-content .modal-body {
    max-height: none;
  }
  .modal-newscore .modal-content.score-overview-content .modal-body .modal-body-placeholder {
    font-size: 14px;
    line-height: 25px;
  }
  .modal-newscore .modal-content.score-overview-content .score-instrument-list .instrument-info .icon {
    width: 16px;
    height: 16px;
  }
  .modal-newscore .modal-content.score-overview-content .score-instrument-list .instrument-info .name {
    font-size: 14px;
    line-height: 16px;
  }
  .modal-newscore .modal-content.score-overview-content .score-instrument-list .action .icon {
    width: 16px;
    height: 16px;
  }
}
.modal-backdrop.visible-header {
  margin-top: 66px;
  box-shadow: inset 0 3px 4px 0 rgba(0, 0, 0, 0.08);
  background: #444951;
}
.modal-backdrop.visible-header.in {
  opacity: 0.6;
}
.instruments-power-only {
  padding: 20px;
  margin-top: 20px;
  background: #e7e8ec;
  border-radius: 3px;
}
.instruments-power-only span {
  color: var(--f-primary);
  text-decoration: underline;
  margin-left: 8px;
}
@keyframes sound {
  0% {
    opacity: 0.35;
    height: 3px;
  }
  100% {
    opacity: 1;
    height: 12px;
  }
}
@keyframes import_circle_hover {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1.04);
  }
}
.modal-backdrop.white {
  background: white;
}
.modal-backdrop.white.in {
  opacity: 0.97;
}
.modal-importscore .modal-close-ext {
  top: 106px;
}
.modal-importscore .modal-content {
  background-color: transparent;
  box-shadow: none;
}
.modal-importscore .modal-header {
  margin-bottom: 14px;
  padding-bottom: 0;
  border-bottom: none;
}
.modal-importscore .modal-header h3 {
  color: var(--f-ink);
  font-size: 32px;
  font-weight: 300;
  line-height: 48px;
}
.modal-importscore .modal-body {
  margin-top: 0;
}
.modal-importscore .modal-footer {
  padding-top: 0;
  margin-top: 0;
}
.modal-importscore .drop {
  cursor: pointer;
}
.modal-importscore .drop .modal-description {
  text-align: center;
  margin-bottom: 15px;
}
.modal-importscore .drop .modal-description strong {
  color: #49A5F8;
  font-weight: normal;
  text-decoration: underline;
}
.modal-importscore .drop .button-container.btn-retry {
  display: none;
}
.modal-importscore .drop.dragover .default-illustration,
.modal-importscore .drop.dragover .hover-illustration,
.modal-importscore .drop.dragover .default-description,
.modal-importscore .drop.dragover .processing-animation {
  display: flex;
}
.modal-importscore .drop.dragover .invalid-description,
.modal-importscore .drop.dragover .invalid-illustration,
.modal-importscore .drop.dragover .success-illustration {
  display: none;
}
.modal-importscore .drop.dragover .bg {
  animation: import_circle_hover 0.5s forwards normal;
}
.modal-importscore .drop.dragover #hover-left {
  opacity: 1;
  transform: translate(-45px, 0px) rotate(-24deg);
}
.modal-importscore .drop.dragover #hover-right {
  opacity: 1;
  transform: translate(50px, 0px) rotate(24deg);
}
.modal-importscore .drop.dragover .button-container .btn-retry {
  display: none;
}
.modal-importscore .drop.ng-valid-validate-fn .default-illustration,
.modal-importscore .drop.ng-processing .default-illustration,
.modal-importscore .drop.ng-valid-validate-fn .hover-illustration,
.modal-importscore .drop.ng-processing .hover-illustration,
.modal-importscore .drop.ng-valid-validate-fn .processing-animation,
.modal-importscore .drop.ng-processing .processing-animation {
  display: flex;
}
.modal-importscore .drop.ng-valid-validate-fn .default-description,
.modal-importscore .drop.ng-processing .default-description,
.modal-importscore .drop.ng-valid-validate-fn .invalid-description,
.modal-importscore .drop.ng-processing .invalid-description,
.modal-importscore .drop.ng-valid-validate-fn .invalid-illustration,
.modal-importscore .drop.ng-processing .invalid-illustration,
.modal-importscore .drop.ng-valid-validate-fn .success-illustration,
.modal-importscore .drop.ng-processing .success-illustration {
  display: none;
}
.modal-importscore .drop.ng-valid-validate-fn .button-container .btn-retry,
.modal-importscore .drop.ng-processing .button-container .btn-retry {
  display: none;
}
.modal-importscore .drop.ng-success .default-illustration,
.modal-importscore .drop.ng-success .default-description,
.modal-importscore .drop.ng-success .hover-illustration,
.modal-importscore .drop.ng-success .processing-animation,
.modal-importscore .drop.ng-success .invalid-illustration,
.modal-importscore .drop.ng-success .invalid-description {
  display: none;
}
.modal-importscore .drop.ng-success .success-illustration {
  display: flex;
}
.modal-importscore .drop.ng-success .button-container .btn-retry {
  display: none;
}
.modal-importscore .drop.ng-invalid .default-illustration,
.modal-importscore .drop.errors .default-illustration,
.modal-importscore .drop.ng-invalid .default-description,
.modal-importscore .drop.errors .default-description,
.modal-importscore .drop.ng-invalid .hover-illustration,
.modal-importscore .drop.errors .hover-illustration,
.modal-importscore .drop.ng-invalid .processing-animation,
.modal-importscore .drop.errors .processing-animation,
.modal-importscore .drop.ng-invalid .success-illustration,
.modal-importscore .drop.errors .success-illustration {
  display: none;
}
.modal-importscore .drop.ng-invalid .invalid-illustration,
.modal-importscore .drop.errors .invalid-illustration,
.modal-importscore .drop.ng-invalid .invalid-description,
.modal-importscore .drop.errors .invalid-description {
  display: flex;
}
.modal-importscore .drop.ng-invalid .button-container .btn-retry,
.modal-importscore .drop.errors .button-container .btn-retry {
  display: block;
}
.modal-importscore .drop.ng-invalid.dragover .invalid-illustration,
.modal-importscore .drop.ng-invalid.dragover .invalid-description,
.modal-importscore .drop.ng-invalid.dragover .success-illustration {
  display: none;
  transition: all 0.5s ease-in-out;
}
.modal-importscore .drop.ng-invalid.dragover .default-illustration,
.modal-importscore .drop.ng-invalid.dragover .default-description,
.modal-importscore .drop.ng-invalid.dragover .hover-illustration,
.modal-importscore .drop.ng-invalid.dragover .processing-animation {
  display: flex;
  transition: all 0.5s ease-in-out;
}
.modal-importscore .drop.ng-invalid.dragover #hover-left {
  opacity: 1;
  transform: translate(-45px, 0px) rotate(-24deg);
}
.modal-importscore .drop.ng-invalid.dragover #hover-right {
  opacity: 1;
  transform: translate(50px, 0px) rotate(24deg);
}
.modal-importscore .import-circle {
  height: 305px;
  width: 305px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto 30px auto;
  position: relative;
}
.modal-importscore .import-circle .bg-container {
  height: 305px;
  width: 305px;
  display: flex;
  position: absolute;
}
.modal-importscore .import-circle .bg {
  height: 280px;
  width: 280px;
  border-radius: 180px;
  background-color: var(--f-primary-dark);
  margin: auto;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.5s ease-in-out;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.06);
}
.modal-importscore .import-circle .illustration-container,
.modal-importscore .import-circle .description-container {
  height: 305px;
  width: 305px;
  position: relative;
}
.modal-importscore .import-circle #default {
  height: 112px;
  width: 82px;
  z-index: 10;
}
.modal-importscore .import-circle #hover-left,
.modal-importscore .import-circle #hover-right {
  height: 81px;
  width: 60px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.modal-importscore .import-circle #hover-left {
  left: 28px;
}
.modal-importscore .import-circle #hover-right {
  left: -32px;
}
.modal-importscore .import-circle .default-illustration,
.modal-importscore .import-circle .success-illustration,
.modal-importscore .import-circle .invalid-illustration,
.modal-importscore .import-circle .hover-illustration,
.modal-importscore .import-circle .default-description,
.modal-importscore .import-circle .invalid-description,
.modal-importscore .import-circle .processing-animation {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}
.modal-importscore .import-circle .default-illustration img,
.modal-importscore .import-circle .success-illustration img,
.modal-importscore .import-circle .invalid-illustration img,
.modal-importscore .import-circle .hover-illustration img,
.modal-importscore .import-circle .default-description img,
.modal-importscore .import-circle .invalid-description img,
.modal-importscore .import-circle .processing-animation img {
  position: relative;
}
.modal-importscore .import-circle .success-illustration img {
  height: 50px;
}
.modal-importscore .import-circle .default-description,
.modal-importscore .import-circle .invalid-description {
  width: 155px;
  color: #A0C4FC;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 0 auto;
  text-align: center;
  position: relative !important;
}
.modal-importscore .import-circle .invalid-description,
.modal-importscore .import-circle .invalid-illustration {
  display: none;
}
.modal-importscore .import-circle .format {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.37px;
  line-height: 22px;
  text-transform: uppercase;
  align-self: flex-end;
  margin-bottom: 51px;
}
.modal-importscore .import-circle .invalid {
  font-size: 14px;
  line-height: 19px;
  margin: auto;
  line-height: 22px;
  text-transform: none;
  align-self: flex-end;
  margin-bottom: 35px;
}
.modal-importscore .button-container {
  display: block;
  flex-direction: column;
  flex-wrap: wrap;
  margin: auto;
}
.modal-importscore .button-container .btn {
  display: block;
  margin: auto;
}
.modal-importscore .button-container .btn-retry {
  display: none;
  margin-bottom: 12px;
}
.modal-importscore input[type="text"] {
  height: auto;
}
.modal-importscore .processing-animation.uploading .bar {
  animation-play-state: running;
}
.modal-importscore .process-bars {
  height: 30px;
  left: 49%;
  margin: -16px 0 0 -20px;
  position: absolute;
  top: 50%;
  width: 52.2px;
  z-index: 15;
}
.modal-importscore .process-bars.mirror {
  margin-top: 16px;
  transform: scale(1, -1);
}
.modal-importscore .bar-divider {
  border: 1px solid var(--f-primary);
  z-index: 15;
  margin-top: 30px;
  width: 50px;
  border-radius: 8px;
}
.modal-importscore .bar {
  background: var(--f-primary);
  margin-left: 1px;
  bottom: 1px;
  height: 3px;
  position: absolute;
  width: 1.8px;
  animation: sound 0ms -800ms linear infinite alternate;
  animation-play-state: paused;
}
.modal-importscore .bar:nth-child(1) {
  left: 0px;
  animation-duration: 474ms;
}
.modal-importscore .bar:nth-child(2) {
  left: 3px;
  animation-duration: 433ms;
}
.modal-importscore .bar:nth-child(3) {
  left: 6px;
  animation-duration: 407ms;
}
.modal-importscore .bar:nth-child(4) {
  left: 9px;
  animation-duration: 458ms;
}
.modal-importscore .bar:nth-child(5) {
  left: 12px;
  animation-duration: 400ms;
}
.modal-importscore .bar:nth-child(6) {
  left: 15px;
  animation-duration: 427ms;
}
.modal-importscore .bar:nth-child(7) {
  left: 18px;
  animation-duration: 441ms;
}
.modal-importscore .bar:nth-child(8) {
  left: 21px;
  animation-duration: 419ms;
}
.modal-importscore .bar:nth-child(9) {
  left: 24px;
  animation-duration: 487ms;
}
.modal-importscore .bar:nth-child(10) {
  left: 27px;
  animation-duration: 442ms;
}
.modal-importscore .bar:nth-child(11) {
  left: 30px;
  animation-duration: 433ms;
}
.modal-importscore .bar:nth-child(12) {
  left: 33px;
  animation-duration: 442ms;
}
.modal-importscore .bar:nth-child(13) {
  left: 36px;
  animation-duration: 407ms;
}
.modal-importscore .bar:nth-child(14) {
  left: 39px;
  animation-duration: 458ms;
}
.modal-importscore .bar:nth-child(15) {
  left: 42px;
  animation-duration: 400ms;
}
@media print {
  .dashboard-header,
  .editor,
  .modal-buttons,
  .sync-score-main,
  .content-profile-main {
    display: none!important;
  }
  .modal {
    background-color: #fff !important;
    height: auto;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    margin: 0;
    padding: 0;
    overflow: visible;
    max-width: none;
    z-index: 1000000;
  }
  .modal-content {
    padding: 0;
    overflow: initial!important;
  }
  .modal-body {
    max-width: 100%!important;
    overflow: initial!important;
  }
}
