.project-item {
  position: relative;
  display: grid;
  gap: 10px;
  width: 400px;
  min-width: 220px;
  height: 120px;
  max-height: 220px;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 10px 5px -10px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0);
}
.project-item:hover {
  box-shadow: 0px 15px 5px -10px rgba(50, 50, 93, 0.25), 0 30px 65px -30px rgba(0, 0, 0, 0);
}
.project-item .expand-button {
  display: none;
}
.project-item .project-icon {
  width: 70px;
  height: 70px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("../images/project_art.svg");
}
.project-item .project-icon .play-icon.hidden {
  display: none;
}
.project-item .project-icon.playable {
  background-image: none;
  color: rgba(52, 68, 88, 0.75);
  font-size: 20px;
}
.project-item .project-icon.playable:hover {
  color: rgba(255, 255, 255, 0.7333333333);
}
.project-item .project-icon.playable:active {
  color: rgba(255, 255, 255, 0.6);
}
.project-item .project-icon.playing {
  padding-left: 0;
  background-image: none;
  color: white;
}
.project-item .project-summary {
  display: grid;
  gap: 5px;
  align-self: center;
  grid-template-columns: 1fr 3fr 0.7fr;
}
.project-item .project-summary .project-name {
  font-style: normal;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  color: var(--hero-color);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 5px;
  text-decoration: none;
  max-height: 75%;
}
.project-item .project-summary .sort-criteria {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  bottom: 10px;
  left: 10px;
  max-width: 200px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 5px;
  color: rgba(52, 68, 88, 0.5);
}
.project-item .project-privacy {
  font-weight: 800;
  font-size: 11px;
  line-height: 20px;
  height: 20px;
  color: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 0 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 65px;
}
.project-item .project-privacy.shareable-view {
  background-color: var(--sequencer-color);
}
.project-item .project-privacy.shareable-edit {
  background-color: var(--piano-color);
}
.project-item .project-privacy.private {
  background-color: var(--bass-color);
}
.project-item .project-privacy.hidden {
  display: none;
}
.project-item .project-privacy:hover {
  cursor: default;
}
.project-item .project-details {
  display: block;
}
.project-item .project-details.hidden {
  visibility: hidden;
}
.project-item .project-details.hidden .left-column, .project-item .project-details.hidden .right-column {
  display: none;
}
.project-item .project-toolbar {
  visibility: visible;
  position: absolute;
  bottom: 10px;
  right: 10px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  background-color: rgba(255, 255, 255, 0.5);
}
.project-item .project-toolbar .project-copy-link-button,
.project-item .project-toolbar .project-edit-button,
.project-item .project-toolbar .project-clone-button,
.project-item .project-toolbar .project-delete-button {
  position: relative;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  height: 100%;
  width: 60px;
  margin: 0;
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: rgba(52, 68, 88, 0.5);
  background-color: transparent;
  transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
.project-item .project-toolbar .project-copy-link-button:hover,
.project-item .project-toolbar .project-edit-button:hover,
.project-item .project-toolbar .project-clone-button:hover,
.project-item .project-toolbar .project-delete-button:hover {
  cursor: pointer;
  color: rgba(52, 68, 88, 0.85);
  background-color: rgba(255, 255, 255, 0.5);
}
.project-item .project-toolbar .project-copy-link-button:after,
.project-item .project-toolbar .project-edit-button:after,
.project-item .project-toolbar .project-clone-button:after,
.project-item .project-toolbar .project-delete-button:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 25px;
  background-color: rgba(52, 68, 88, 0.25);
  right: 0;
  bottom: 7px;
}
.project-item .project-toolbar .project-copy-link-button:focus,
.project-item .project-toolbar .project-edit-button:focus,
.project-item .project-toolbar .project-clone-button:focus,
.project-item .project-toolbar .project-delete-button:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #ddd;
}
.project-item .project-toolbar .project-clone-button {
  border-radius: 0;
}
.project-item .project-toolbar .project-delete-button {
  border-radius: 0 5px 5px 0;
}
.project-item .project-toolbar .project-delete-button:after {
  width: 0;
}
.project-item .project-toolbar .project-copy-link-button {
  width: 85px;
  border-radius: 0 5px 5px 0;
  display: none;
}
.project-item .project-toolbar .project-copy-link-button:after {
  width: 0;
}
.project-item .reorder-wrapper, .project-item .project-action-items {
  display: none;
  position: absolute;
}

#course-projects .project-copy-link-button:focus {
  border: none !important;
}

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