@charset "UTF-8";
@media (min-width: 20.625em) and (max-width: 47.99em) {
  .title0 {
    align-self: flex-start;
    font-size: 1.5rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -1.3px;
    color: #131313;
    padding: 0.6rem 0;
    display: flex;
    gap: 1rem;
  }
  .title0 img {
    height: 100%;
    padding: 0.3rem;
  }
  .title1 {
    position: relative;
    align-self: flex-start;
    font-size: 1.25rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -1.1px;
    color: #131313;
    gap: 1rem;
    display: flex;
  }
  .title1 img {
    height: 100%;
    padding: 0.5rem;
    min-width: 71px;
  }
  .title2 {
    display: flex;
    align-self: flex-start;
    font-size: 1.1rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.8px;
    align-content: center;
    color: #131313;
    padding: 0.6rem 0;
    gap: 1rem;
    margin: 0.2rem 0;
  }
  .title2 a:hover {
    text-decoration: underline;
  }
  .title2 img {
    height: 100%;
    padding: 0.3rem;
  }
  .title3 {
    align-self: flex-start;
    font-size: 0.9rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.3px;
    color: #131313;
    margin-bottom: -1rem;
  }
  .text-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .buttons {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.6rem;
  }
  .buttons .button {
    border: none;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    background-color: #4d4d4d;
    color: #ffffff;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: 0.1s ease;
  }
  .buttons .button:hover {
    background: #858585;
  }
  .buttons .selected-button {
    background-color: #b18dff;
    color: #ffffff;
    cursor: default;
  }
  .buttons .selected-button:hover {
    background: #b18dff;
  }
  .buttons-mobile {
    margin-top: 0rem;
  }
  .buttons-desktop {
    display: none;
  }
  .select-btn {
    width: 30vw;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.1rem;
    color: #131313;
    transition: filter 0.3s ease;
  }
  .select-btn:hover {
    filter: brightness(1.05);
  }
  .select-btn .options-list {
    position: absolute;
    z-index: 1000;
    font-size: 1.1rem;
    margin-top: 3.5rem;
    width: 30vw;
    height: 0px;
    background: #e4e4e4;
    color: #131313;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    overflow-x: hidden;
    transition: 0.1s;
  }
  .select-btn .options-list .option {
    width: 100%;
    padding-left: 1.3rem;
    cursor: pointer;
  }
  .select-btn .options-list .option:hover {
    color: white;
    background-color: #858585;
  }
  .select-btn .options-list.active {
    height: 6rem;
  }
  .select-btn .select {
    width: 100%;
    border-radius: 0.5rem;
    padding: 0.4rem 1rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    background: #e4e4e4;
    align-items: center;
  }
  .select-btn .select span {
    max-width: 20vw;
  }
  .select-btn .select svg {
    fill: #131313;
    transform: scaleY(-1);
  }
  .order-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    width: 23vw;
    background: #4d4d4d;
    font-size: 0.9rem;
    color: #ffffff;
    border-radius: 1.5rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .order-btn i {
    font-size: 1.2rem;
  }
  .pagination {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    gap: 1rem;
  }
  .pagination .arrow,
  .pagination .arrow-none {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 0.5rem;
  }
  .pagination .arrow svg,
  .pagination .arrow-none svg {
    fill: #131313;
    opacity: 0.7;
    width: 2.2rem;
    height: 2.2rem;
  }
  .pagination .arrow {
    background-color: #ececec;
    transition: 0.1s ease;
    cursor: pointer;
  }
  .pagination .arrow:hover {
    background-color: white;
  }
  .pagination .arrow:hover svg {
    opacity: 1;
  }
  .pagination .arrow-none {
    background-color: #d8d8d8;
  }
  .pagination .arrow-none svg {
    opacity: 0.3;
  }
  .pagination span {
    font-size: 1rem;
    color: #131313;
    opacity: 0.8;
    font-weight: 500;
  }
  .btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    border: 1px solid white;
    color: #ffffff;
    padding: 0.4rem 0.6rem;
    border-radius: 0.8rem;
    letter-spacing: -0.02rem;
    transition: 0.1s ease;
    font-size: 0.8rem;
    font-weight: 600;
  }
  .btn-login:hover {
    background-color: rgba(247, 247, 247, 0.1529411765);
  }
  .btn-login .logo_img {
    width: 1.4rem;
    height: auto;
  }
  .albums-component {
    align-self: flex-start;
    width: 90vw;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 1rem;
    margin-bottom: 1rem;
  }
  .albums-component .album {
    padding: 2.5vw;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: 0.2s ease;
  }
  .albums-component .album:hover {
    background: #e4e4e4;
  }
  .albums-component .album:hover .cover {
    filter: brightness(1.15);
  }
  .albums-component .album:hover .details-only .rating {
    color: #6b68ff;
  }
  .albums-component .album5-6,
  .albums-component .album5-5 {
    display: none;
  }
  .albums-component .cover {
    width: 40vw;
    border-radius: 0.3rem;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
  }
  .albums-component .details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40vw;
  }
  .albums-component .details .name {
    width: 40vw;
    font-size: 0.9rem;
    color: #131313;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .albums-component .details .artist {
    width: 40vw;
    font-size: 0.8rem;
    font-weight: normal;
    opacity: 0.8;
    color: #131313;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .albums-component .details .numbers {
    display: flex;
    gap: 0.3rem;
    font-size: 0.8rem;
    opacity: 0.7;
  }
  .albums-component .details .numbers .fa-message-music {
    margin-top: 0.2rem;
  }
  .albums-component .details .numbers .reviews {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .albums-component .details-only {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
    margin-top: 0.8rem;
    color: #4d4d4d;
  }
  .albums-component .details-only .rating i {
    margin-right: -2.5px;
  }
  .albums-component .details-only .fa-message-music {
    margin-left: 0.2rem;
    margin-top: 0.1rem;
  }
  .artists-component {
    width: 90vw;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .artists-component .artist {
    padding: 2.5vw;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .artists-component .artist .pp {
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
  }
  .artists-component .artist .name {
    margin-top: 1vw;
    font-size: 1.1rem;
    font-weight: normal;
    max-width: 40vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .artists-component .artist:hover {
    background: #e4e4e4;
    border-radius: 0.4rem;
  }
  .review-component {
    background-color: #e4e4e4;
    padding: 0.8rem;
    border-radius: 0.6rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .review-component .album {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .review-component .album .cover {
    width: 25vw;
    height: 25vw;
    border-radius: 0.3rem;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
    transition: filter 0.3s ease;
    cursor: pointer;
  }
  .review-component .album .cover:hover {
    filter: brightness(1.2);
  }
  .review-component .album .infos {
    margin-left: 0.8rem;
    display: flex;
    flex-direction: column;
  }
  .review-component .album .infos .album-name {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .review-component .album .infos .album-name img {
    min-width: 21px;
    height: 1.5rem;
  }
  .review-component .album .infos .album-name:hover {
    text-decoration: underline;
  }
  .review-component .album .infos .name {
    max-width: 45vw;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
  }
  .review-component .album .infos .name:hover {
    text-decoration: underline;
  }
  .review-component .album .infos .artist {
    max-width: 40vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
    opacity: 0.9;
    cursor: pointer;
  }
  .review-component .album .infos .artist span {
    margin-right: -3px;
  }
  .review-component .album .infos .artist span:hover {
    text-decoration: underline;
  }
  .review-component .album .infos .year {
    display: none;
  }
  .review-component .album .infos .wavee-guy {
    display: flex;
    align-items: center;
    margin-top: 1rem;
  }
  .review-component .album .infos .wavee-guy .pseudo {
    cursor: pointer;
    font-size: 1rem;
    max-width: 35vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .review-component .album .infos .wavee-guy .pseudo:hover {
    text-decoration: underline;
  }
  .review-component .album .infos .wavee-guy img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    margin-right: 0.5rem;
  }
  .review-component .album .comment {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .review-component .album .comment .text-zone {
    margin: 0.5rem 0;
    width: 100%;
    background: #f7f7f7;
    padding: 0.6rem;
    border-radius: 0.6rem;
  }
  .review-component .album .comment .text-zone:hover {
    background-color: white;
  }
  .review-component .album .comment .text {
    width: 100%;
    max-height: 15vw;
    font-size: 0.9rem;
    overflow-y: auto;
  }
  .review-component .album .comment .rating {
    font-size: 1rem;
    color: #6b68ff;
  }
  .review-component .album .comment .rating i {
    margin-right: -0.2rem;
  }
  .review-component .album .comment .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .review-component .album .comment .bottom .like-com {
    display: flex;
    align-items: center;
  }
  .review-component .album .comment .likes {
    width: 50px;
    display: flex;
    align-items: center;
  }
  .review-component .album .comment .likes .like {
    margin-top: 1.5px;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
  }
  .review-component .album .comment .likes .like.after {
    display: none;
  }
  .friends-reviews-component {
    align-self: flex-start;
    width: 90vw;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 1rem;
    margin-bottom: 1rem;
  }
  .friends-reviews-component .album {
    padding: 2.5vw;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: 0.2s ease;
  }
  .friends-reviews-component .album:hover {
    background: #e4e4e4;
  }
  .friends-reviews-component .album:hover .cover {
    filter: brightness(1.15);
  }
  .friends-reviews-component .album:hover .details .rating {
    color: #6b68ff;
  }
  .friends-reviews-component .album5-6,
  .friends-reviews-component .album5-5 {
    display: none;
  }
  .friends-reviews-component .cover {
    width: 40vw;
    border-radius: 0.3rem;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
  }
  .friends-reviews-component .infos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }
  .friends-reviews-component .infos .pp {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
  }
  .friends-reviews-component .infos .left-infos {
    margin-top: -0.4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .friends-reviews-component .infos .left-infos .name {
    max-width: 25vw;
    font-size: 0.9rem;
    font-weight: 500;
    color: #131313;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .friends-reviews-component .infos .left-infos .details {
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    color: #4d4d4d;
  }
  .friends-reviews-component .infos .left-infos .details .fa-message-music {
    margin-left: 0.2rem;
    margin-top: 0.15rem;
  }
  .friends-reviews-component .infos .left-infos .details .rating {
    margin-top: 0.1rem;
    display: flex;
  }
}
@media (min-width: 48em) and (max-width: 63.99em) {
  .title0 {
    align-self: flex-start;
    font-size: 1.8rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -1.5px;
    color: #131313;
    padding: 0.6rem 0;
    display: flex;
    gap: 1rem;
  }
  .title0 img {
    height: 100%;
    padding: 0.4rem;
  }
  .title1 {
    position: relative;
    align-self: flex-start;
    font-size: 1.5rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -1.2px;
    color: #131313;
    gap: 1rem;
    display: flex;
  }
  .title1 img {
    height: 100%;
    padding: 0.5rem;
  }
  .title2 {
    display: flex;
    align-self: flex-start;
    font-size: 1.25rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -1px;
    align-content: center;
    color: #131313;
    padding: 0.6rem 0;
    gap: 1rem;
    margin: 0.2rem 0;
  }
  .title2 a:hover {
    text-decoration: underline;
  }
  .title2 img {
    height: 100%;
    padding: 0.3rem;
  }
  .title3 {
    align-self: flex-start;
    font-size: 1.1rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.3px;
    color: #131313;
    margin-bottom: -1rem;
  }
  .text-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .buttons {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.6rem;
  }
  .buttons .button {
    border: none;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    background-color: #4d4d4d;
    color: #ffffff;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: 0.1s ease;
    font-size: 0.9rem;
  }
  .buttons .button:hover {
    background: #858585;
  }
  .buttons .selected-button {
    background-color: #b18dff;
    color: #ffffff;
    cursor: default;
  }
  .buttons .selected-button:hover {
    background: #b18dff;
  }
  .buttons-mobile {
    display: none;
  }
  .select-btn {
    width: 15vw;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.25rem;
    color: #131313;
    transition: filter 0.3s ease;
  }
  .select-btn:hover {
    filter: brightness(1.05);
  }
  .select-btn .options-list {
    position: absolute;
    z-index: 1000;
    font-size: 1.25rem;
    margin-top: 3.5rem;
    width: 15vw;
    height: 0px;
    background: #e4e4e4;
    color: #131313;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    overflow-x: hidden;
    transition: 0.1s;
  }
  .select-btn .options-list .option {
    width: 100%;
    padding-left: 1.3rem;
    cursor: pointer;
  }
  .select-btn .options-list .option:hover {
    color: white;
    background-color: #858585;
  }
  .select-btn .options-list.active {
    height: 6rem;
  }
  .select-btn .select {
    width: 100%;
    border-radius: 0.5rem;
    padding: 0.4rem 1rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    background: #e4e4e4;
    align-items: center;
  }
  .select-btn .select svg {
    fill: #131313;
    transform: scaleY(-1);
  }
  .order-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    width: 13vw;
    background: #4d4d4d;
    font-size: 1rem;
    color: #ffffff;
    border-radius: 1.5rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .order-btn i {
    font-size: 1.3rem;
  }
  .pagination {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    gap: 1rem;
  }
  .pagination .arrow,
  .pagination .arrow-none {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 0.5rem;
  }
  .pagination .arrow svg,
  .pagination .arrow-none svg {
    fill: #131313;
    opacity: 0.7;
    width: 2.2rem;
    height: 2.2rem;
  }
  .pagination .arrow {
    background-color: #ececec;
    transition: 0.1s ease;
    cursor: pointer;
  }
  .pagination .arrow:hover {
    background-color: white;
  }
  .pagination .arrow:hover svg {
    opacity: 1;
  }
  .pagination .arrow-none {
    background-color: #d8d8d8;
  }
  .pagination .arrow-none svg {
    opacity: 0.3;
  }
  .pagination span {
    font-size: 1rem;
    color: #131313;
    opacity: 0.8;
    font-weight: 500;
  }
  .btn-login {
    max-width: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    border: 1px solid white;
    color: #ffffff;
    padding: 0.6rem 0.8rem;
    border-radius: 1rem;
    letter-spacing: -0.02rem;
    transition: 0.1s ease;
    font-size: 0.9rem;
    font-weight: 600;
  }
  .btn-login:hover {
    background-color: rgba(247, 247, 247, 0.1529411765);
  }
  .btn-login .logo_img {
    width: 1.5rem;
    height: auto;
  }
  .albums-component {
    align-self: flex-start;
    width: 85vw;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 1rem;
    margin-bottom: 1rem;
  }
  .albums-component .album {
    padding: 1.25vw;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: 0.2s ease;
  }
  .albums-component .album:hover {
    background: #e4e4e4;
  }
  .albums-component .album:hover .cover {
    filter: brightness(1.15);
  }
  .albums-component .album:hover .details-only .rating {
    color: #6b68ff;
  }
  .albums-component .album5-6,
  .albums-component .album5-5 {
    display: none;
  }
  .albums-component .cover {
    width: 18.75vw;
    border-radius: 0.3rem;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
  }
  .albums-component .details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 18.75vw;
  }
  .albums-component .details .name {
    max-width: 18.75vw;
    font-size: 0.9rem;
    color: #131313;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .albums-component .details .artist {
    max-width: 18.75vw;
    font-size: 0.8rem;
    font-weight: normal;
    opacity: 0.7;
    color: #131313;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .albums-component .details .numbers {
    display: flex;
    gap: 0.4rem;
    font-size: 0.8rem;
    opacity: 0.8;
  }
  .albums-component .details .numbers .fa-message-music {
    margin-top: 0.22rem;
  }
  .albums-component .details .numbers .reviews {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .albums-component .details-only {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
    margin-top: 0.8rem;
    color: #4d4d4d;
  }
  .albums-component .details-only .rating i {
    margin-right: -2.5px;
  }
  .albums-component .details-only .fa-message-music {
    margin-left: 0.2rem;
    margin-top: 0.1rem;
  }
  .artists-component {
    width: 85vw;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .artists-component .artist {
    padding: 1.5vw;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .artists-component .artist .pp {
    width: 18.25vw;
    height: 18.25vw;
    border-radius: 50%;
  }
  .artists-component .artist .name {
    margin-top: 1vw;
    font-size: 1.1rem;
    font-weight: normal;
    max-width: 18.25vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .artists-component .artist:hover {
    background: #e4e4e4;
    border-radius: 0.4rem;
  }
  .review-component {
    background-color: #e4e4e4;
    padding: 0.8rem;
    border-radius: 0.6rem;
    margin-top: 1.2rem;
    margin-bottom: 1.9rem;
  }
  .review-component .album {
    width: 100%;
    display: flex;
  }
  .review-component .album .cover {
    width: 16vw;
    height: 16vw;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    transition: filter 0.3s ease;
    cursor: pointer;
  }
  .review-component .album .cover:hover {
    filter: brightness(1.2);
  }
  .review-component .album .infos {
    width: 20vw;
    margin-left: 0.8rem;
    display: flex;
    flex-direction: column;
  }
  .review-component .album .infos .album-name {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .review-component .album .infos .album-name img {
    height: 1.5rem;
  }
  .review-component .album .infos .album-name:hover {
    text-decoration: underline;
  }
  .review-component .album .infos .name {
    max-width: 15.5vw;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
  }
  .review-component .album .infos .name:hover {
    text-decoration: underline;
  }
  .review-component .album .infos .artist {
    max-width: 18vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
    opacity: 0.9;
    cursor: pointer;
  }
  .review-component .album .infos .artist span {
    margin-right: -3px;
  }
  .review-component .album .infos .artist span:hover {
    text-decoration: underline;
  }
  .review-component .album .infos .year {
    font-size: 1rem;
    opacity: 0.8;
  }
  .review-component .album .infos .wavee-guy {
    display: flex;
    align-items: center;
    margin-top: 1rem;
  }
  .review-component .album .infos .wavee-guy .pseudo {
    cursor: pointer;
    font-size: 1rem;
    max-width: 15vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .review-component .album .infos .wavee-guy .pseudo:hover {
    text-decoration: underline;
  }
  .review-component .album .infos .wavee-guy img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    margin-right: 0.5rem;
  }
  .review-component .album .comment {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
  }
  .review-component .album .comment .text-zone {
    width: 43vw;
    margin-left: -5px;
    background: #f7f7f7;
    padding: 0.6rem;
    border-radius: 0.6rem;
  }
  .review-component .album .comment .text-zone:hover {
    background-color: white;
  }
  .review-component .album .comment .text {
    width: 40vw;
    max-height: 9vw;
    font-size: 0.9rem;
    overflow-y: auto;
  }
  .review-component .album .comment .rating {
    font-size: 1rem;
    color: #6b68ff;
  }
  .review-component .album .comment .rating i {
    margin-right: -0.2rem;
  }
  .review-component .album .comment .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
  }
  .review-component .album .comment .bottom .like-com {
    display: flex;
    align-items: center;
  }
  .review-component .album .comment .likes {
    width: 50px;
    display: flex;
    align-items: center;
  }
  .review-component .album .comment .likes .like {
    margin-top: 1.5px;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
  }
  .review-component .album .comment .likes .like.after {
    display: none;
  }
  .friends-reviews-component {
    align-self: flex-start;
    width: 85vw;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 1rem;
    margin-bottom: 1rem;
  }
  .friends-reviews-component .album {
    padding: 1.25vw;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: 0.2s ease;
  }
  .friends-reviews-component .album:hover {
    background: #e4e4e4;
  }
  .friends-reviews-component .album:hover .cover {
    filter: brightness(1.15);
  }
  .friends-reviews-component .album:hover .details .rating {
    color: #6b68ff;
  }
  .friends-reviews-component .album5-6,
  .friends-reviews-component .album5-5 {
    display: none;
  }
  .friends-reviews-component .cover {
    width: 18.75vw;
    border-radius: 0.3rem;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
  }
  .friends-reviews-component .infos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 0.8rem;
  }
  .friends-reviews-component .infos .pp {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
  }
  .friends-reviews-component .infos .left-infos {
    margin-top: -0.4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .friends-reviews-component .infos .left-infos .name {
    max-width: 14vw;
    font-size: 0.9rem;
    font-weight: 500;
    color: #131313;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .friends-reviews-component .infos .left-infos .details {
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    color: #4d4d4d;
  }
  .friends-reviews-component .infos .left-infos .details .fa-message-music {
    margin-left: 0.2rem;
    margin-top: 0.1rem;
  }
  .friends-reviews-component .infos .left-infos .details .rating {
    display: flex;
  }
}
@media (min-width: 64em) and (max-width: 81.24em) {
  .title0 {
    align-self: flex-start;
    font-size: 2.2rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -2px;
    color: #131313;
    padding: 0.6rem 0;
    display: flex;
    gap: 1rem;
  }
  .title0 img {
    height: 100%;
    padding: 0.5rem;
  }
  .title1 {
    position: relative;
    align-self: flex-start;
    font-size: 1.8rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -1.5px;
    color: #131313;
    gap: 1rem;
    display: flex;
  }
  .title1 img {
    height: 100%;
    padding: 0.5rem;
  }
  .title2 {
    display: flex;
    align-self: flex-start;
    font-size: 1.5rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -1.4px;
    align-content: center;
    color: #131313;
    padding: 0.6rem 0;
    gap: 1rem;
    margin: 0.2rem 0;
  }
  .title2 a:hover {
    text-decoration: underline;
  }
  .title2 img {
    height: 100%;
    padding: 0.3rem;
  }
  .title3 {
    align-self: flex-start;
    font-size: 1.1rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.3px;
    color: #131313;
    margin-bottom: -1rem;
  }
  .text-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .buttons {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 0.6rem;
  }
  .buttons .button {
    border: none;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    background-color: #4d4d4d;
    color: #ffffff;
    border-radius: 2rem;
    padding: 0.5rem 1.1rem;
    cursor: pointer;
    transition: 0.1s ease;
  }
  .buttons .button:hover {
    background: #858585;
  }
  .buttons .selected-button {
    background-color: #b18dff;
    color: #ffffff;
    cursor: default;
  }
  .buttons .selected-button:hover {
    background: #b18dff;
  }
  .buttons-mobile {
    display: none;
  }
  .select-btn {
    width: 12.2vw;
    height: 2.5rem;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.25rem;
    color: #131313;
    transition: filter 0.3s ease;
  }
  .select-btn:hover {
    filter: brightness(1.05);
  }
  .select-btn .options-list {
    position: absolute;
    z-index: 1000;
    font-size: 1.25rem;
    margin-top: 3.5rem;
    width: 12.2vw;
    height: 0px;
    background: #e4e4e4;
    color: #131313;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    overflow-x: hidden;
    transition: 0.1s;
  }
  .select-btn .options-list .option {
    width: 100%;
    padding-left: 1.3rem;
    cursor: pointer;
  }
  .select-btn .options-list .option:hover {
    color: white;
    background-color: #858585;
  }
  .select-btn .options-list.active {
    height: 6rem;
  }
  .select-btn .select {
    width: 100%;
    border-radius: 6px;
    padding: 0.5rem 1.3rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    background: #e4e4e4;
    align-items: center;
  }
  .select-btn .select svg {
    fill: #131313;
    transform: scaleY(-1);
  }
  .order-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    width: 10vw;
    background: #4d4d4d;
    font-size: 1.1rem;
    color: #ffffff;
    border-radius: 1.5rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .order-btn i {
    font-size: 1.3rem;
  }
  .pagination {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    gap: 1rem;
  }
  .pagination .arrow,
  .pagination .arrow-none {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 0.5rem;
  }
  .pagination .arrow svg,
  .pagination .arrow-none svg {
    fill: #131313;
    opacity: 0.7;
    width: 2.2rem;
    height: 2.2rem;
  }
  .pagination .arrow {
    background-color: #ececec;
    transition: 0.1s ease;
    cursor: pointer;
  }
  .pagination .arrow:hover {
    background-color: white;
  }
  .pagination .arrow:hover svg {
    opacity: 1;
  }
  .pagination .arrow-none {
    background-color: #d8d8d8;
  }
  .pagination .arrow-none svg {
    opacity: 0.3;
  }
  .pagination span {
    font-size: 1rem;
    color: #131313;
    opacity: 0.8;
    font-weight: 500;
  }
  .btn-login {
    max-width: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    border: 1px solid white;
    color: #ffffff;
    padding: 0.6rem 0.8rem;
    border-radius: 1rem;
    letter-spacing: -0.02rem;
    transition: 0.1s ease;
    font-size: 0.9rem;
    font-weight: 600;
  }
  .btn-login:hover {
    background-color: rgba(247, 247, 247, 0.1529411765);
  }
  .btn-login .logo_img {
    width: 1.5rem;
    height: auto;
  }
  .albums-component {
    align-self: flex-start;
    width: 85vw;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 1rem;
    margin-bottom: 1rem;
  }
  .albums-component .album {
    padding: 0.9vw;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0.3rem;
    transition: 0.2s ease;
  }
  .albums-component .album:hover {
    background: #e4e4e4;
  }
  .albums-component .album:hover .cover {
    filter: brightness(1.15);
  }
  .albums-component .album:hover .details-only .rating {
    color: #6b68ff;
  }
  .albums-component .album5-6 {
    display: none;
  }
  .albums-component .cover {
    width: 15.2vw;
    border-radius: 0.3rem;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
  }
  .albums-component .details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 14.5vw;
  }
  .albums-component .details .name {
    max-width: 14.5vw;
    font-size: 1rem;
    color: #131313;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .albums-component .details .artist {
    max-width: 14.5vw;
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.8;
    color: #131313;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .albums-component .details .numbers {
    display: flex;
    gap: 0.4rem;
    opacity: 0.7;
  }
  .albums-component .details .numbers .fa-message-music {
    margin-top: 0.3rem;
  }
  .albums-component .details .numbers .reviews {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .albums-component .details-only {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
    margin-top: 0.8rem;
    color: #4d4d4d;
  }
  .albums-component .details-only .rating i {
    margin-right: -2.5px;
  }
  .albums-component .details-only .fa-message-music {
    margin-left: 0.2rem;
    margin-top: 0.1rem;
  }
  .artists-component {
    width: 85vw;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .artists-component .artist {
    padding: 1.5vw;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .artists-component .artist .pp {
    width: 14vw;
    height: 14vw;
    border-radius: 50%;
  }
  .artists-component .artist .name {
    margin-top: 1vw;
    font-size: 1.1rem;
    font-weight: normal;
    max-width: 14vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .artists-component .artist:hover {
    background: #e4e4e4;
    border-radius: 0.4rem;
  }
  .review-component {
    background-color: #e4e4e4;
    padding: 1.2rem;
    border-radius: 0.6rem;
    margin-top: 1.2rem;
    margin-bottom: 1.9rem;
  }
  .review-component .album {
    width: 100%;
    display: flex;
  }
  .review-component .album .cover {
    width: 15vw;
    height: 15vw;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    transition: filter 0.3s ease;
    cursor: pointer;
  }
  .review-component .album .cover:hover {
    filter: brightness(1.2);
  }
  .review-component .album .infos {
    width: 20vw;
    margin-left: 1.9rem;
    display: flex;
    flex-direction: column;
  }
  .review-component .album .infos .album-name {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .review-component .album .infos .album-name img {
    height: 1.5rem;
  }
  .review-component .album .infos .album-name:hover {
    text-decoration: underline;
  }
  .review-component .album .infos .name {
    max-width: 15.5vw;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
  }
  .review-component .album .infos .name:hover {
    text-decoration: underline;
  }
  .review-component .album .infos .artist {
    max-width: 18vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
    opacity: 0.9;
    cursor: pointer;
  }
  .review-component .album .infos .artist span {
    margin-right: -3px;
  }
  .review-component .album .infos .artist span:hover {
    text-decoration: underline;
  }
  .review-component .album .infos .year {
    font-size: 1rem;
    opacity: 0.8;
  }
  .review-component .album .infos .wavee-guy {
    display: flex;
    align-items: center;
    margin-top: 1rem;
  }
  .review-component .album .infos .wavee-guy .pseudo {
    cursor: pointer;
    font-size: 1rem;
    max-width: 15vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .review-component .album .infos .wavee-guy .pseudo:hover {
    text-decoration: underline;
  }
  .review-component .album .infos .wavee-guy img {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    margin-right: 0.5rem;
  }
  .review-component .album .comment {
    margin-left: 1.2rem;
    display: flex;
    flex-direction: column;
  }
  .review-component .album .comment .text-zone {
    width: 43vw;
    margin-left: -5px;
    background: #f7f7f7;
    padding: 0.8rem;
    border-radius: 0.6rem;
  }
  .review-component .album .comment .text-zone:hover {
    background-color: white;
  }
  .review-component .album .comment .text {
    width: 40vw;
    max-height: 9vw;
    font-size: 1rem;
    overflow-y: auto;
  }
  .review-component .album .comment .rating {
    font-size: 1.1rem;
    color: #6b68ff;
  }
  .review-component .album .comment .rating i {
    margin-right: -0.2rem;
  }
  .review-component .album .comment .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
  }
  .review-component .album .comment .bottom .like-com {
    display: flex;
    align-items: center;
  }
  .review-component .album .comment .likes {
    width: 50px;
    display: flex;
    align-items: center;
  }
  .review-component .album .comment .likes .like {
    margin-top: 1.5px;
    width: 38px;
    height: 38px;
    cursor: pointer;
  }
  .review-component .album .comment .likes .like.after {
    display: none;
  }
  .friends-reviews-component {
    align-self: flex-start;
    width: 85vw;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 1rem;
    margin-bottom: 1rem;
  }
  .friends-reviews-component .album {
    padding: 0.9vw;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: 0.2s ease;
  }
  .friends-reviews-component .album:hover {
    background: #e4e4e4;
  }
  .friends-reviews-component .album:hover .cover {
    filter: brightness(1.15);
  }
  .friends-reviews-component .album:hover .details .rating {
    color: #6b68ff;
  }
  .friends-reviews-component .album5-6 {
    display: none;
  }
  .friends-reviews-component .cover {
    width: 15.2vw;
    border-radius: 0.3rem;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
  }
  .friends-reviews-component .infos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 0.8rem;
  }
  .friends-reviews-component .infos .pp {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
  }
  .friends-reviews-component .infos .left-infos {
    margin-top: -0.4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .friends-reviews-component .infos .left-infos .name {
    max-width: 14vw;
    font-size: 1rem;
    font-weight: 500;
    color: #131313;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .friends-reviews-component .infos .left-infos .details {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    color: #4d4d4d;
  }
  .friends-reviews-component .infos .left-infos .details .fa-message-music {
    margin-left: 0.2rem;
    margin-top: 0.1rem;
  }
  .friends-reviews-component .infos .left-infos .details .rating {
    display: flex;
  }
}
@media (min-width: 81.25em) {
  .title0 {
    align-self: flex-start;
    font-size: 2.2rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -2px;
    color: #131313;
    padding: 0.6rem 0;
    display: flex;
    gap: 1rem;
  }
  .title0 img {
    height: 100%;
    padding: 0.5rem;
  }
  .title1 {
    position: relative;
    align-self: flex-start;
    font-size: 1.8rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -1.5px;
    color: #131313;
    gap: 1rem;
    display: flex;
  }
  .title1 img {
    height: 100%;
    padding: 0.5rem;
  }
  .title2 {
    display: flex;
    align-self: flex-start;
    font-size: 1.5rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -1.5px;
    align-content: center;
    color: #131313;
    padding: 0.6rem 0;
    gap: 1rem;
    margin: 0.2rem 0;
  }
  .title2 a:hover {
    text-decoration: underline;
  }
  .title2 img {
    height: 100%;
    padding: 0.3rem;
  }
  .title3 {
    align-self: flex-start;
    font-size: 1.1rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.3px;
    color: #131313;
    margin-bottom: -1rem;
  }
  .text-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .buttons {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 0.6rem;
  }
  .buttons .button {
    border: none;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    background-color: #4d4d4d;
    color: #ffffff;
    border-radius: 2rem;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    transition: 0.1s ease;
  }
  .buttons .button:hover {
    background: #858585;
  }
  .buttons .selected-button {
    background-color: #b18dff;
    color: #ffffff;
    cursor: default;
  }
  .buttons .selected-button:hover {
    background: #b18dff;
  }
  .buttons-mobile {
    display: none;
  }
  .select-btn {
    width: 12.2vw;
    height: 2.5rem;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.25rem;
    color: #131313;
    transition: filter 0.3s ease;
  }
  .select-btn:hover {
    filter: brightness(1.05);
  }
  .select-btn .options-list {
    position: absolute;
    z-index: 100;
    font-size: 1.25rem;
    margin-top: 3.5rem;
    width: 12.2vw;
    height: 0px;
    background: #e4e4e4;
    color: #131313;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    overflow-x: hidden;
    transition: 0.1s;
  }
  .select-btn .options-list .option {
    width: 100%;
    padding-left: 1.3rem;
    cursor: pointer;
  }
  .select-btn .options-list .option:hover {
    color: white;
    background-color: #858585;
  }
  .select-btn .options-list.active {
    height: 6rem;
  }
  .select-btn .select {
    width: 100%;
    border-radius: 6px;
    padding: 0.5rem 1.3rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    background: #e4e4e4;
    align-items: center;
  }
  .select-btn .select svg {
    fill: #131313;
    transform: scaleY(-1);
  }
  .order-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    width: 8vw;
    background: #4d4d4d;
    font-size: 1.1rem;
    color: #ffffff;
    border-radius: 1.5rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .order-btn i {
    font-size: 1.3rem;
  }
  .pagination {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    gap: 1rem;
  }
  .pagination .arrow,
  .pagination .arrow-none {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 0.5rem;
  }
  .pagination .arrow svg,
  .pagination .arrow-none svg {
    fill: #131313;
    opacity: 0.7;
    width: 2.5rem;
    height: 2.5rem;
  }
  .pagination .arrow {
    background-color: #ececec;
    transition: 0.1s ease;
    cursor: pointer;
  }
  .pagination .arrow:hover {
    background-color: white;
  }
  .pagination .arrow:hover svg {
    opacity: 1;
  }
  .pagination .arrow-none {
    background-color: #d8d8d8;
  }
  .pagination .arrow-none svg {
    opacity: 0.3;
  }
  .pagination span {
    font-size: 1rem;
    color: #131313;
    opacity: 0.8;
    font-weight: 500;
  }
  .btn-login {
    max-width: 18rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    border: 1px solid white;
    color: #ffffff;
    padding: 0.8rem 1rem;
    border-radius: 1.2rem;
    letter-spacing: -0.02rem;
    transition: 0.1s ease;
    font-size: 1rem;
    font-weight: 600;
  }
  .btn-login:hover {
    background-color: rgba(247, 247, 247, 0.1529411765);
  }
  .btn-login .logo_img {
    width: 1.75rem;
    height: auto;
  }
  .albums-component {
    align-self: flex-start;
    width: 81vw;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 1rem;
    margin-bottom: 1rem;
  }
  .albums-component .album {
    padding: 0.9vw;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0.4rem;
    transition: 0.2s ease;
  }
  .albums-component .album:hover {
    background: #e4e4e4;
  }
  .albums-component .album:hover .cover {
    filter: brightness(1.15);
  }
  .albums-component .album:hover .details-only .rating {
    color: #6b68ff;
  }
  .albums-component .album5-6 {
    display: none;
  }
  .albums-component .cover {
    width: 14.4vw;
    border-radius: 0.3rem;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
  }
  .albums-component .details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 14vw;
  }
  .albums-component .details .name {
    max-width: 14vw;
    font-size: 1.2rem;
    color: #131313;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .albums-component .details .artist {
    max-width: 14vw;
    font-size: 1rem;
    font-weight: normal;
    opacity: 0.8;
    color: #131313;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .albums-component .details .numbers {
    display: flex;
    opacity: 0.7;
    gap: 0.4rem;
  }
  .albums-component .details .numbers .fa-message-music {
    margin-top: 0.3rem;
  }
  .albums-component .details .numbers .reviews {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .albums-component .details-only {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    gap: 0.5rem;
    margin-top: 0.8rem;
    color: #4d4d4d;
  }
  .albums-component .details-only .fa-message-music {
    margin-left: 0.2rem;
  }
  .albums-component .details-only .rating i {
    margin-right: -2.5px;
  }
  .artists-component {
    width: 81vw;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .artists-component .artist {
    padding: 1.25vw;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .artists-component .artist .pp {
    width: 13.7vw;
    height: 13.7vw;
    border-radius: 50%;
  }
  .artists-component .artist .name {
    margin-top: 1vw;
    font-size: 1.1rem;
    font-weight: normal;
    max-width: 13.2vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .artists-component .artist:hover {
    background: #e4e4e4;
    border-radius: 0.4rem;
  }
  .review-component {
    background-color: #e4e4e4;
    padding: 1.2rem;
    border-radius: 0.6rem;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .review-component .album {
    width: 100%;
    display: flex;
  }
  .review-component .album .cover {
    width: 13.5vw;
    height: 13.5vw;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    transition: filter 0.3s ease;
    cursor: pointer;
  }
  .review-component .album .cover:hover {
    filter: brightness(1.2);
  }
  .review-component .album .infos {
    width: 22vw;
    margin-left: 30px;
    display: flex;
    flex-direction: column;
  }
  .review-component .album .infos .album-name {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .review-component .album .infos .album-name img {
    height: 1.6rem;
  }
  .review-component .album .infos .album-name:hover {
    text-decoration: underline;
  }
  .review-component .album .infos .name {
    max-width: 15.5vw;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
  }
  .review-component .album .infos .name:hover {
    text-decoration: underline;
  }
  .review-component .album .infos .artist {
    max-width: 18vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.1rem;
    opacity: 0.9;
    cursor: pointer;
  }
  .review-component .album .infos .artist span {
    margin-right: -3px;
  }
  .review-component .album .infos .artist span:hover {
    text-decoration: underline;
  }
  .review-component .album .infos .year {
    font-size: 19px;
    opacity: 0.8;
  }
  .review-component .album .infos .wavee-guy {
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  .review-component .album .infos .wavee-guy .pseudo {
    cursor: pointer;
    font-size: 19px;
    max-width: 15vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .review-component .album .infos .wavee-guy .pseudo:hover {
    text-decoration: underline;
  }
  .review-component .album .infos .wavee-guy img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
  }
  .review-component .album .comment {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
  }
  .review-component .album .comment .text-zone {
    width: 43vw;
    margin-left: -5px;
    background: #f7f7f7;
    padding: 15px;
    border-radius: 0.6rem;
  }
  .review-component .album .comment .text-zone:hover {
    background-color: white;
  }
  .review-component .album .comment .text {
    width: 40vw;
    max-height: 9vw;
    font-size: 1.1rem;
    overflow-y: auto;
  }
  .review-component .album .comment .rating {
    font-size: 1.3rem;
    color: #6b68ff;
  }
  .review-component .album .comment .rating i {
    margin-right: -0.1rem;
  }
  .review-component .album .comment .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
  }
  .review-component .album .comment .bottom .like-com {
    display: flex;
    align-items: center;
  }
  .review-component .album .comment .likes {
    width: 50px;
    display: flex;
    align-items: center;
  }
  .review-component .album .comment .likes .like {
    margin-top: 1.5px;
    width: 38px;
    height: 38px;
    cursor: pointer;
  }
  .review-component .album .comment .likes .like.after {
    display: none;
  }
  .friends-reviews-component {
    align-self: flex-start;
    width: 81vw;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 1rem;
    margin-bottom: 1rem;
  }
  .friends-reviews-component .album {
    padding: 0.9vw;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: 0.2s ease;
  }
  .friends-reviews-component .album:hover {
    background: #e4e4e4;
  }
  .friends-reviews-component .album:hover .cover {
    filter: brightness(1.15);
  }
  .friends-reviews-component .album:hover .details .rating {
    color: #6b68ff;
  }
  .friends-reviews-component .album5-6 {
    display: none;
  }
  .friends-reviews-component .cover {
    width: 14.4vw;
    border-radius: 0.3rem;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
  }
  .friends-reviews-component .infos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 0.8rem;
  }
  .friends-reviews-component .infos .pp {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
  }
  .friends-reviews-component .infos .left-infos {
    margin-top: -0.4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .friends-reviews-component .infos .left-infos .name {
    max-width: 14vw;
    font-size: 1.2rem;
    font-weight: 500;
    color: #131313;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .friends-reviews-component .infos .left-infos .details {
    margin-top: -0.1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #4d4d4d;
  }
  .friends-reviews-component .infos .left-infos .details .rating {
    display: flex;
  }
  .friends-reviews-component .infos .left-infos .details .fa-message-music {
    margin-top: 0.2rem;
  }
}
.other-pagination {
  display: none;
}

@media (min-width: 20.625em) and (max-width: 47.99em) {
  .share-modal {
    display: none;
    top: 15rem;
    position: fixed;
    background: #e4e4e4;
    left: 50%;
    transform: translate(-50%);
    width: 81vw;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
    border-radius: 1rem;
    padding: 1rem;
  }
  .share-modal .top {
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
  }
  .share-modal .top .title {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 1.1rem;
  }
  .share-modal .top .cross {
    margin-left: auto;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .share-modal .top .cross svg {
    width: 1.8rem;
    height: auto;
    fill: #4d4d4d;
  }
  .share-modal .top .cross:hover svg {
    fill: #131313;
  }
  .share-modal .link {
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 3rem;
    background-color: #f7f7f7;
    padding: 10px;
    font-size: 0.8rem;
  }
  .share-modal .link .full-link {
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .share-modal .link .copy-link {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6b68ff;
    color: #ffffff;
    border-radius: 1.5rem;
    width: 65px;
    height: 35px;
    margin-left: auto;
    cursor: pointer;
    transition: 0.2s ease;
  }
  .share-modal .link .copy-link:hover {
    background-color: #8985ff;
  }
  .share-modal .link .copy-link:active {
    transform: scale(0.95);
  }
  .delete-modal {
    position: fixed;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #e4e4e4;
    padding: 1rem;
    left: 50%;
    transform: translate(-50%);
    width: 60vw;
    top: 9rem;
    border-radius: 1rem;
    z-index: 1000;
  }
  .delete-modal .title {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.8px;
    color: #131313;
    margin-bottom: 1.5rem;
  }
  .delete-modal .text-delete {
    width: 95%;
    font-size: 18px;
    margin-bottom: 1.5rem;
    text-align: justify;
  }
  .delete-modal .btns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
  .delete-modal .btns .btn-confirm-delete {
    position: relative;
    width: 25%;
    height: 45px;
    background-color: #131313;
    border: none;
    outline: none;
    border-radius: 30px;
    box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
  }
  .delete-modal .btns .btn-cancel {
    position: relative;
    width: 25%;
    height: 45px;
    background-color: #ffffff;
    border: 0;
    outline: none;
    border-radius: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    color: #131313;
    font-weight: bold;
  }
  .review-response-modal {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #e4e4e4;
    left: 50%;
    transform: translate(-50%);
    top: 9.5rem;
    border-radius: 1rem;
    padding: 1rem;
    z-index: 1000;
  }
  .review-response-modal .top-modal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
  }
  .review-response-modal .top-modal .close-btn {
    font-size: 2rem;
    opacity: 0.6;
    cursor: pointer;
  }
  .review-response-modal .top-modal .title {
    font-weight: 500;
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
  }
  .review-response-modal .comment {
    margin: 1.5rem 0;
    width: 81vw;
    height: 150px;
  }
  .review-response-modal .comment textarea {
    border: none;
    background: #f7f7f7;
    resize: none;
    width: 100%;
    height: 100%;
    font-size: 1rem;
    border-radius: 0.6rem;
    color: #131313;
    font-family: "Poppins", sans-serif;
    padding: 1rem;
  }
  .review-response-modal .comment textarea::placeholder {
    color: #131313;
    opacity: 0.8;
  }
  .review-response-modal .btns {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
  }
  .review-response-modal .btns .btn-review {
    width: 40%;
    height: 2.4rem;
    color: #ffffff;
    background-color: #6b68ff;
    border: none;
    outline: none;
    border-radius: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.2s ease;
  }
  .review-response-modal .btns .btn-review:hover {
    background-color: #8985ff;
  }
  .review-response-modal .btns .delete-btn {
    background-color: #191919;
  }
  .review-response-modal .btns .delete-btn:hover {
    background-color: #191919;
  }
  .order-modal {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #e4e4e4;
    width: 60vw;
    left: 20vw;
    top: 9.5rem;
    border-radius: 1.5rem;
    padding: 1.5rem;
    z-index: 1000;
  }
  .order-modal .top-modal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
  }
  .order-modal .top-modal .close-btn {
    font-size: 2rem;
    opacity: 0.6;
    cursor: pointer;
  }
  .order-modal .top-modal .title {
    font-weight: 500;
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
  }
  .order-modal .order-options {
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    padding-top: 0.5rem;
  }
  .order-modal .order-options .order-option {
    padding: 0.5rem 2rem;
    border-radius: 1rem;
  }
  .order-modal .order-options .order-option:hover {
    background-color: #b18dff;
    color: #f7f7f7;
  }
}
@media (min-width: 48em) and (max-width: 63.99em) {
  .share-modal {
    display: none;
    top: 15rem;
    position: fixed;
    background: #e4e4e4;
    left: 50%;
    transform: translate(-50%);
    width: 60vw;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
    border-radius: 1rem;
    padding: 1.5rem;
  }
  .share-modal .top {
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
  }
  .share-modal .top .title {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 1.1rem;
  }
  .share-modal .top .cross {
    margin-left: auto;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .share-modal .top .cross svg {
    width: 1.8rem;
    height: auto;
    fill: #4d4d4d;
  }
  .share-modal .top .cross:hover svg {
    fill: #131313;
  }
  .share-modal .link {
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 3rem;
    background-color: #f7f7f7;
    padding: 10px;
    font-size: 0.8rem;
  }
  .share-modal .link .full-link {
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .share-modal .link .copy-link {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6b68ff;
    color: #ffffff;
    border-radius: 1.5rem;
    width: 65px;
    height: 35px;
    margin-left: auto;
    cursor: pointer;
    transition: 0.2s ease;
  }
  .share-modal .link .copy-link:hover {
    background-color: #8985ff;
  }
  .share-modal .link .copy-link:active {
    transform: scale(0.95);
  }
  .delete-modal {
    position: fixed;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #e4e4e4;
    padding: 1rem;
    left: 50%;
    transform: translate(-50%);
    width: 60vw;
    top: 9rem;
    border-radius: 1rem;
    z-index: 1000;
  }
  .delete-modal .title {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.8px;
    color: #131313;
    margin-bottom: 1.5rem;
  }
  .delete-modal .text-delete {
    width: 95%;
    font-size: 18px;
    margin-bottom: 1.5rem;
    text-align: justify;
  }
  .delete-modal .btns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
  .delete-modal .btns .btn-confirm-delete {
    position: relative;
    width: 25%;
    height: 45px;
    background-color: #131313;
    border: none;
    outline: none;
    border-radius: 30px;
    box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
  }
  .delete-modal .btns .btn-cancel {
    position: relative;
    width: 25%;
    height: 45px;
    background-color: #ffffff;
    border: 0;
    outline: none;
    border-radius: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    color: #131313;
    font-weight: bold;
  }
  .review-response-modal {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #e4e4e4;
    left: 50%;
    transform: translate(-50%);
    top: 9.5rem;
    border-radius: 1.5rem;
    padding: 1.5rem;
    z-index: 1000;
  }
  .review-response-modal .top-modal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
  }
  .review-response-modal .top-modal .close-btn {
    font-size: 2rem;
    opacity: 0.6;
    cursor: pointer;
  }
  .review-response-modal .top-modal .title {
    font-weight: 500;
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
  }
  .review-response-modal .comment {
    margin: 1.5rem 0;
    width: 60vw;
    height: 150px;
  }
  .review-response-modal .comment textarea {
    border: none;
    background: #f7f7f7;
    resize: none;
    width: 100%;
    height: 100%;
    font-size: 1rem;
    border-radius: 0.6rem;
    color: #131313;
    font-family: "Poppins", sans-serif;
    padding: 1rem;
  }
  .review-response-modal .comment textarea::placeholder {
    color: #131313;
    opacity: 0.8;
  }
  .review-response-modal .btns {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
  }
  .review-response-modal .btns .btn-review {
    width: 30%;
    height: 2.6rem;
    color: #ffffff;
    background-color: #6b68ff;
    border: none;
    outline: none;
    border-radius: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.2s ease;
  }
  .review-response-modal .btns .btn-review:hover {
    background-color: #8985ff;
  }
  .review-response-modal .btns .delete-btn {
    background-color: #191919;
  }
  .review-response-modal .btns .delete-btn:hover {
    background-color: #191919;
  }
  .order-modal {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #e4e4e4;
    left: 50%;
    transform: translate(-50%);
    top: 9.5rem;
    border-radius: 1.5rem;
    padding: 1.5rem;
    z-index: 1000;
  }
  .order-modal .top-modal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
  }
  .order-modal .top-modal .close-btn {
    font-size: 2rem;
    opacity: 0.6;
    cursor: pointer;
  }
  .order-modal .top-modal .title {
    font-weight: 500;
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
  }
  .order-modal .order-options {
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    padding-top: 0.5rem;
  }
  .order-modal .order-options .order-option {
    padding: 0.5rem 3rem;
    border-radius: 1rem;
  }
  .order-modal .order-options .order-option:hover {
    background-color: #b18dff;
    color: #f7f7f7;
  }
}
@media (min-width: 64em) and (max-width: 81.24em) {
  .share-modal {
    display: none;
    top: 15rem;
    position: fixed;
    background: #e4e4e4;
    left: 50%;
    transform: translate(-50%);
    width: 45vw;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
    border-radius: 1rem;
    padding: 1.5rem;
  }
  .share-modal .top {
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
  }
  .share-modal .top .title {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 20px;
  }
  .share-modal .top .cross {
    margin-left: auto;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .share-modal .top .cross svg {
    width: 33px;
    height: auto;
    fill: #4d4d4d;
  }
  .share-modal .top .cross:hover svg {
    fill: #131313;
  }
  .share-modal .link {
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 1.5rem;
    background-color: #f7f7f7;
    padding: 10px;
  }
  .share-modal .link .full-link {
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .share-modal .link .copy-link {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6b68ff;
    color: #ffffff;
    border-radius: 1.5rem;
    width: 65px;
    height: 35px;
    margin-left: auto;
    cursor: pointer;
    transition: 0.2s ease;
  }
  .share-modal .link .copy-link:hover {
    background-color: #8985ff;
  }
  .share-modal .link .copy-link:active {
    transform: scale(0.95);
  }
  .delete-modal {
    position: fixed;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #e4e4e4;
    padding: 1rem;
    left: 50%;
    transform: translate(-50%);
    width: 30vw;
    top: 9.5rem;
    border-radius: 1rem;
    z-index: 1000;
  }
  .delete-modal .title {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.8px;
    color: #131313;
    margin-bottom: 1.5rem;
  }
  .delete-modal .text-delete {
    width: 90%;
    font-size: 18px;
    margin-bottom: 1.5rem;
    text-align: justify;
  }
  .delete-modal .btns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
  .delete-modal .btns .btn-confirm-delete {
    position: relative;
    width: 25%;
    height: 45px;
    background-color: #131313;
    border: none;
    outline: none;
    border-radius: 30px;
    box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
  }
  .delete-modal .btns .btn-cancel {
    position: relative;
    width: 25%;
    height: 45px;
    background-color: #ffffff;
    border: 0;
    outline: none;
    border-radius: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    color: #131313;
    font-weight: bold;
  }
  .review-response-modal {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #e4e4e4;
    left: 50%;
    transform: translate(-50%);
    top: 9.5rem;
    border-radius: 1.5rem;
    padding: 1.5rem;
    z-index: 1000;
  }
  .review-response-modal .top-modal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
  }
  .review-response-modal .top-modal .close-btn {
    font-size: 2rem;
    opacity: 0.6;
    cursor: pointer;
  }
  .review-response-modal .top-modal .title {
    font-weight: 500;
    font-size: 1.4rem;
    margin: 0;
    padding: 0;
  }
  .review-response-modal .comment {
    margin: 1.5rem 0;
    width: 50vw;
    height: 150px;
  }
  .review-response-modal .comment textarea {
    border: none;
    background: #f7f7f7;
    resize: none;
    width: 100%;
    height: 100%;
    font-size: 1rem;
    border-radius: 0.6rem;
    color: #131313;
    font-family: "Poppins", sans-serif;
    padding: 1rem;
  }
  .review-response-modal .comment textarea::placeholder {
    color: #131313;
    opacity: 0.8;
  }
  .review-response-modal .btns {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
  }
  .review-response-modal .btns .btn-review {
    width: 25%;
    height: 2.8rem;
    color: #ffffff;
    background-color: #6b68ff;
    border: none;
    outline: none;
    border-radius: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.2s ease;
  }
  .review-response-modal .btns .btn-review:hover {
    background-color: #8985ff;
  }
  .review-response-modal .btns .delete-btn {
    background-color: #191919;
  }
  .review-response-modal .btns .delete-btn:hover {
    background-color: #191919;
  }
  .order-modal {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #e4e4e4;
    left: 50%;
    transform: translate(-50%);
    top: 9.5rem;
    border-radius: 1.5rem;
    padding: 1.5rem;
    z-index: 1000;
  }
  .order-modal .top-modal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
  }
  .order-modal .top-modal .close-btn {
    font-size: 2rem;
    opacity: 0.6;
    cursor: pointer;
  }
  .order-modal .top-modal .title {
    font-weight: 500;
    font-size: 1.4rem;
    margin: 0;
    padding: 0;
  }
  .order-modal .order-options {
    display: flex;
    flex-direction: column;
    font-size: 1.4rem;
    padding-top: 0.5rem;
  }
  .order-modal .order-options .order-option {
    padding: 0.5rem 5rem;
    border-radius: 1rem;
  }
  .order-modal .order-options .order-option:hover {
    background-color: #b18dff;
    color: #f7f7f7;
  }
}
@media (min-width: 81.25em) {
  .share-modal {
    display: none;
    top: 15rem;
    position: fixed;
    background: #e4e4e4;
    left: 50%;
    transform: translate(-50%);
    width: 39vw;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
    border-radius: 1rem;
    padding: 1.5rem;
  }
  .share-modal .top {
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
  }
  .share-modal .top .title {
    width: 37vw;
    display: flex;
    justify-content: center;
    font-size: 20px;
  }
  .share-modal .top .cross {
    margin-left: auto;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .share-modal .top .cross svg {
    width: 33px;
    height: auto;
    fill: #4d4d4d;
  }
  .share-modal .top .cross:hover svg {
    fill: #131313;
  }
  .share-modal .link {
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 1.5rem;
    background-color: #f7f7f7;
    padding: 10px;
  }
  .share-modal .link .full-link {
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .share-modal .link .copy-link {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6b68ff;
    color: #ffffff;
    border-radius: 1.5rem;
    width: 65px;
    height: 35px;
    margin-left: auto;
    cursor: pointer;
    transition: 0.2s ease;
  }
  .share-modal .link .copy-link:hover {
    background-color: #8985ff;
  }
  .share-modal .link .copy-link:active {
    transform: scale(0.95);
  }
  .delete-modal {
    position: fixed;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #e4e4e4;
    padding: 1rem;
    left: 50%;
    transform: translate(-50%);
    width: 40vw;
    top: 9.5rem;
    border-radius: 1rem;
    z-index: 1000;
  }
  .delete-modal .title {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.8px;
    color: #131313;
    margin-bottom: 1.5rem;
  }
  .delete-modal .text-delete {
    width: 90%;
    font-size: 18px;
    margin-bottom: 1.5rem;
    text-align: justify;
  }
  .delete-modal .btns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
  .delete-modal .btns .btn-confirm-delete {
    position: relative;
    width: 25%;
    height: 45px;
    background-color: #131313;
    border: none;
    outline: none;
    border-radius: 30px;
    box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
  }
  .delete-modal .btns .btn-cancel {
    position: relative;
    width: 25%;
    height: 45px;
    background-color: #ffffff;
    border: 0;
    outline: none;
    border-radius: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    color: #131313;
    font-weight: bold;
  }
  .review-response-modal {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #e4e4e4;
    left: 50%;
    transform: translate(-50%);
    top: 9.5rem;
    border-radius: 1.5rem;
    padding: 1.5rem;
    z-index: 1000;
  }
  .review-response-modal .top-modal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
  }
  .review-response-modal .top-modal .close-btn {
    font-size: 2rem;
    opacity: 0.6;
    cursor: pointer;
  }
  .review-response-modal .top-modal .title {
    font-weight: 500;
    font-size: 1.4rem;
    margin: 0;
    padding: 0;
  }
  .review-response-modal .comment {
    margin: 1.5rem 0;
    width: 50vw;
    height: 150px;
  }
  .review-response-modal .comment textarea {
    border: none;
    background: #f7f7f7;
    resize: none;
    width: 100%;
    height: 100%;
    font-size: 1rem;
    border-radius: 0.6rem;
    color: #131313;
    font-family: "Poppins", sans-serif;
    padding: 1rem;
  }
  .review-response-modal .comment textarea::placeholder {
    color: #131313;
    opacity: 0.8;
  }
  .review-response-modal .btns {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
  }
  .review-response-modal .btns .btn-review {
    width: 20%;
    height: 2.8rem;
    color: #ffffff;
    background-color: #6b68ff;
    border: none;
    outline: none;
    border-radius: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.2s ease;
  }
  .review-response-modal .btns .btn-review:hover {
    background-color: #8985ff;
  }
  .review-response-modal .btns .delete-btn {
    background-color: #191919;
  }
  .review-response-modal .btns .delete-btn:hover {
    background-color: #191919;
  }
  .order-modal {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #e4e4e4;
    left: 50%;
    transform: translate(-50%);
    top: 9.5rem;
    border-radius: 1.5rem;
    padding: 1.5rem;
    z-index: 1000;
  }
  .order-modal .top-modal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
  }
  .order-modal .top-modal .close-btn {
    font-size: 2rem;
    opacity: 0.6;
    cursor: pointer;
  }
  .order-modal .top-modal .title {
    font-weight: 500;
    font-size: 1.4rem;
    margin: 0;
    padding: 0;
  }
  .order-modal .order-options {
    display: flex;
    flex-direction: column;
    font-size: 1.4rem;
    padding-top: 0.5rem;
  }
  .order-modal .order-options .order-option {
    padding: 0.5rem 5rem;
    border-radius: 1rem;
  }
  .order-modal .order-options .order-option:hover {
    background-color: #b18dff;
    color: #f7f7f7;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  min-height: 100dvh;
  max-width: 100%;
  background-color: #f7f7f7;
  color: #131313;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
}
a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

h4,
h5,
h6 {
  margin: 0;
  font-size: normal;
  font-weight: normal; /* Annule le gras par défaut */
  line-height: normal; /* Réinitialise la hauteur de ligne */
  display: block; /* Assure un comportement de bloc si besoin, ou inline si utilisé en ligne */
}

.alert {
  position: fixed;
  bottom: -150px;
  left: 3.2rem;
  color: #131313;
  font-size: 1.1rem;
  background-color: white;
  padding: 0.5rem 0.9rem;
  border-radius: 2rem;
  z-index: 2000;
  opacity: 1;
  box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.3);
  transition: 0.5s ease;
}

.active-alert {
  transition: 0.5s ease;
  bottom: 2.3rem;
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .alert {
    position: fixed;
    bottom: -150px;
    left: 50%;
    transform: translate(-50%);
    color: #131313;
    font-size: 0.9rem;
    background-color: white;
    padding: 8px 13px;
    border-radius: 2rem;
    z-index: 2000;
    opacity: 1;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.3);
    transition: 0.5s ease;
  }
  .active-alert {
    transition: 0.5s ease;
    bottom: 50px;
  }
}
@media (min-width: 20.625em) and (max-width: 47.99em) {
  .alert {
    position: fixed;
    bottom: -150px;
    left: 2rem;
    width: auto;
    max-width: 81vw;
    color: #131313;
    font-size: 1rem;
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    z-index: 2000;
    opacity: 1;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.3);
    transition: 0.5s ease;
  }
  .active-alert {
    transition: 0.5s ease;
    bottom: 50px;
  }
}
@media (min-width: 20.625em) and (max-width: 47.99em) {
  header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    padding: 0.4rem 0;
    background-color: #191919;
    display: flex;
    align-items: center;
    top: 0;
  }
  header .sidebar-btn {
    display: flex;
    align-items: center;
    position: absolute;
    justify-content: center;
    left: 1.2rem;
    font-size: 1.6rem;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    position: fixed;
  }
  header .sidebar-btn .sidebar-icon-close {
    display: none;
  }
  header .sidebar-btn.active .sidebar-icon {
    display: none;
  }
  header .sidebar-btn.active .sidebar-icon-close {
    display: block;
  }
  header nav {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90vw;
  }
  header nav .logo {
    margin-left: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.1rem;
  }
  header nav .logo .wavee {
    display: none;
  }
  header nav .logo img {
    margin-top: 0.7rem;
    width: 2.8rem;
    height: auto;
  }
  header nav .search-desktop {
    width: 50vw;
    padding: 0.4rem 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    background: #f7f7f7;
    transition: 0.2s ease;
  }
  header nav .search-desktop:focus-within {
    width: 52vw;
    padding: 0.45rem 1.1rem;
  }
  header nav .search-input {
    font-size: 0.9rem;
    font-family: "Poppins", sans-serif;
    color: #131313;
    margin-left: 0.5rem;
    outline: none;
    border: none;
    background: transparent;
    flex: 1;
  }
  header nav .search-icon {
    color: #131313;
    opacity: 0.7;
  }
  header nav .search-input::placeholder {
    color: #131313;
    opacity: 0.7;
  }
  header nav .profile {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  header nav .profile .notif-btn {
    display: none;
  }
  header nav .profile img {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    transition: 0.3s ease;
  }
  header nav .profile img:hover {
    filter: brightness(1.1);
  }
  header nav .profile img:active {
    transform: scale(0.95);
  }
  header nav .profile button {
    background: none;
    border: none;
    cursor: pointer;
    color: #131313;
  }
  header nav .profile .patreon-btn {
    display: none;
  }
  header nav .profile .profile-menu {
    display: none;
    position: absolute;
    flex-direction: column;
    background: #ececec;
    box-shadow: 0rem 0rem 0.5rem 0rem rgba(0, 0, 0, 0.2);
    width: 10rem;
    padding: 0.5rem;
    border-radius: 0.4rem;
    top: 4.5rem;
    right: 4vw;
  }
  header nav .profile .profile-menu .profile-option {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0.2rem;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    color: #131313;
    margin-bottom: 1px;
    width: 100%;
    font-size: 1.1rem;
  }
  header nav .profile .profile-menu .profile-option i {
    display: flex;
    justify-content: center;
    width: 2rem;
  }
  header nav .profile .profile-menu .profile-option:hover {
    background: #f7f7f7;
    border-radius: 0.3rem;
  }
  .header-login {
    display: flex;
    width: 100%;
    justify-content: center;
    font-weight: 800;
    color: #ffffff;
    font-size: 1.6rem;
  }
  .header-login .header-content {
    width: 90vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-login .header-content .wavee-logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }
  .header-login .header-content .wavee-logo .wavee-image {
    width: 2.25rem;
    height: 2.25rem;
  }
}
@media (min-width: 48em) and (max-width: 63.99em) {
  header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 5rem;
    background-color: #191919;
    display: flex;
    align-items: center;
    top: 0;
  }
  header .sidebar-btn {
    display: flex;
    align-items: center;
    position: absolute;
    justify-content: center;
    left: 1.5rem;
    font-size: 1.5rem;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    position: fixed;
  }
  header .sidebar-btn .sidebar-icon-close {
    display: none;
  }
  header .sidebar-btn.active .sidebar-icon {
    display: none;
  }
  header .sidebar-btn.active .sidebar-icon-close {
    display: block;
  }
  header nav {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85vw;
  }
  header nav .logo {
    display: flex;
    align-items: center;
    gap: 0.1rem;
  }
  header nav .logo .wavee {
    font-weight: bold;
    color: #ffffff;
    font-size: 1.8rem;
    letter-spacing: -0.8px;
  }
  header nav .logo img {
    margin-top: 0.4rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  header nav .search-desktop {
    width: 38vw;
    padding: 0.4rem 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    background: #f7f7f7;
    transition: 0.2s ease;
  }
  header nav .search-desktop:focus-within {
    width: 41vw;
    padding: 0.5rem 1.1rem;
  }
  header nav .search-input {
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    color: #131313;
    margin-left: 0.5rem;
    outline: none;
    border: none;
    background: transparent;
    flex: 1;
  }
  header nav .search-icon {
    color: #131313;
    opacity: 0.7;
  }
  header nav .search-input::placeholder {
    color: #131313;
    opacity: 0.7;
  }
  header nav .profile {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  header nav .profile .patreon-btn {
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #f7f7f7;
    border: none;
    background: none;
  }
  header nav .profile img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    transition: 0.3s ease;
  }
  header nav .profile img:hover {
    filter: brightness(1.1);
  }
  header nav .profile img:active {
    transform: scale(0.95);
  }
  header nav .profile button {
    background: none;
    border: none;
    cursor: pointer;
  }
  header nav .profile .profile-menu {
    display: none;
    position: absolute;
    flex-direction: column;
    background: #ececec;
    box-shadow: 0rem 0rem 0.5rem 0rem rgba(0, 0, 0, 0.2);
    width: 10rem;
    padding: 0.5rem;
    border-radius: 0.4rem;
    top: 4.5rem;
    right: 6vw;
  }
  header nav .profile .profile-menu .profile-option {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0.2rem;
    align-items: center;
    cursor: pointer;
    margin-bottom: 1px;
    width: 100%;
    font-size: 1.1rem;
  }
  header nav .profile .profile-menu .profile-option i {
    display: flex;
    justify-content: center;
    width: 2rem;
  }
  header nav .profile .profile-menu .profile-option:hover {
    background: #f7f7f7;
    border-radius: 0.3rem;
  }
  .header-login {
    display: flex;
    width: 100%;
    justify-content: center;
    font-weight: 800;
    color: #ffffff;
    font-size: 1.8rem;
  }
  .header-login .header-content {
    width: 85vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-login .header-content .wavee-logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    letter-spacing: -0.8px;
  }
  .header-login .header-content .wavee-logo .wavee-image {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media (min-width: 64em) and (max-width: 81.24em) {
  header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 5rem;
    background-color: #191919;
    display: flex;
    align-items: center;
    top: 0;
  }
  header .sidebar-btn {
    display: flex;
    align-items: center;
    position: absolute;
    justify-content: center;
    left: 2rem;
    font-size: 2rem;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    position: fixed;
  }
  header .sidebar-btn .sidebar-icon-close {
    display: none;
  }
  header .sidebar-btn.active .sidebar-icon {
    display: none;
  }
  header .sidebar-btn.active .sidebar-icon-close {
    display: block;
  }
  header nav {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85vw;
  }
  header nav .logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }
  header nav .logo .wavee {
    font-weight: bold;
    color: #ffffff;
    font-size: 2rem;
    letter-spacing: -1px;
  }
  header nav .logo img {
    margin-top: 0.7rem;
    width: 3rem;
    height: 3rem;
  }
  header nav .search-desktop {
    width: 40vw;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    background: #f7f7f7;
    transition: 0.2s ease;
  }
  header nav .search-desktop:focus-within {
    width: 44vw;
    padding: 0.6rem 1.1rem;
  }
  header nav .search-input {
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    color: #131313;
    margin-left: 0.5rem;
    outline: none;
    border: none;
    background: transparent;
    flex: 1;
  }
  header nav .search-icon {
    color: #131313;
    opacity: 0.7;
  }
  header nav .search-input::placeholder {
    color: #131313;
    opacity: 0.7;
  }
  header nav .profile {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  header nav .profile .patreon-btn {
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #f7f7f7;
    border: none;
    background: none;
  }
  header nav .profile img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    transition: 0.3s ease;
  }
  header nav .profile img:hover {
    filter: brightness(1.1);
  }
  header nav .profile img:active {
    transform: scale(0.95);
  }
  header nav .profile button {
    background: none;
    border: none;
    cursor: pointer;
  }
  header nav .profile .profile-menu {
    display: none;
    position: absolute;
    flex-direction: column;
    background: #ececec;
    box-shadow: 0rem 0rem 0.5rem 0rem rgba(0, 0, 0, 0.2);
    width: 10rem;
    padding: 0.5rem;
    border-radius: 0.4rem;
    top: 4.5rem;
    right: 6vw;
  }
  header nav .profile .profile-menu .profile-option {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0.2rem;
    align-items: center;
    cursor: pointer;
    margin-bottom: 1px;
    width: 100%;
    font-size: 1.1rem;
  }
  header nav .profile .profile-menu .profile-option i {
    display: flex;
    justify-content: center;
    width: 2rem;
  }
  header nav .profile .profile-menu .profile-option:hover {
    background: #f7f7f7;
    border-radius: 0.3rem;
  }
  .header-login {
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: center;
    font-weight: 800;
    color: #ffffff;
    font-size: 2rem;
  }
  .header-login .header-content {
    width: 85vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-login .header-content .wavee-logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    letter-spacing: -1px;
  }
  .header-login .header-content .wavee-logo .wavee-image {
    width: 3rem;
    height: 3rem;
  }
}
@media (min-width: 81.25em) {
  header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 5rem;
    background-color: #191919;
    display: flex;
    align-items: center;
    top: 0;
  }
  header .sidebar-btn {
    display: flex;
    align-items: center;
    position: absolute;
    justify-content: center;
    left: 2rem;
    font-size: 2rem;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    position: fixed;
  }
  header .sidebar-btn .sidebar-icon-close {
    display: none;
  }
  header .sidebar-btn.active .sidebar-icon {
    display: none;
  }
  header .sidebar-btn.active .sidebar-icon-close {
    display: block;
  }
  header nav {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 81vw;
  }
  header nav .logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }
  header nav .logo .wavee {
    font-weight: bold;
    color: #ffffff;
    font-size: 2rem;
    letter-spacing: -1px;
  }
  header nav .logo img {
    margin-top: 0.5rem;
    width: 3rem;
    height: 3rem;
  }
  header nav .search-desktop {
    width: 40vw;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    background: #f7f7f7;
    transition: 0.2s ease;
  }
  header nav .search-desktop:focus-within {
    width: 44vw;
    padding: 0.6rem 1.1rem;
  }
  header nav .search-input {
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    color: #131313;
    margin-left: 0.5rem;
    outline: none;
    border: none;
    background: transparent;
    flex: 1;
  }
  header nav .search-icon {
    color: #131313;
    opacity: 0.7;
  }
  header nav .search-input::placeholder {
    color: #131313;
    opacity: 0.7;
  }
  header nav .profile {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  header nav .profile .patreon-btn {
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #f7f7f7;
    border: none;
    background: none;
  }
  header nav .profile img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    transition: 0.3s ease;
  }
  header nav .profile img:hover {
    filter: brightness(1.1);
  }
  header nav .profile img:active {
    transform: scale(0.95);
  }
  header nav .profile button {
    background: none;
    border: none;
    cursor: pointer;
  }
  header nav .profile .profile-menu {
    display: none;
    position: absolute;
    flex-direction: column;
    background: #ececec;
    box-shadow: 0rem 0rem 0.5rem 0rem rgba(0, 0, 0, 0.2);
    width: 10rem;
    padding: 0.5rem;
    border-radius: 0.4rem;
    top: 4.5rem;
    right: 8.5vw;
  }
  header nav .profile .profile-menu .profile-option {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0.2rem;
    align-items: center;
    cursor: pointer;
    margin-bottom: 1px;
    width: 100%;
    font-size: 1.1rem;
  }
  header nav .profile .profile-menu .profile-option i {
    display: flex;
    justify-content: center;
    width: 2rem;
  }
  header nav .profile .profile-menu .profile-option:hover {
    background: #f7f7f7;
    border-radius: 0.3rem;
  }
  .header-login {
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: center;
    font-weight: 800;
    color: #ffffff;
    font-size: 2rem;
  }
  .header-login .header-content {
    width: 81vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-login .header-content .wavee-logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    letter-spacing: -1px;
  }
  .header-login .header-content .wavee-logo .wavee-image {
    width: 3rem;
    height: 3rem;
  }
}
@media (min-width: 48em) {
  .sidebar {
    position: fixed;
    top: 5rem;
    left: 0;
    width: auto;
    height: calc(100dvh - 5rem);
    background-color: rgba(255, 255, 255, 0.7843137255);
    -webkit-backdrop-filter: blur(0.5rem);
    backdrop-filter: blur(0.5rem);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: 0.3s ease;
    z-index: 800;
  }
  .sidebar .black-space {
    margin-top: 1rem;
  }
  .sidebar .side-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    padding: 0.8rem 1rem;
    gap: 1rem;
    margin: 0.6rem 0.8rem;
    border-radius: 0.6rem;
    color: #131313;
  }
  .sidebar .side-option:hover {
    background: #b18dff;
    color: #ffffff;
  }
  .sidebar .side-option span {
    font-size: 1.3rem;
  }
  .sidebar .side-option i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    font-size: 1.3rem;
  }
  .content {
    width: 100%;
    min-height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-left: 0;
  }
}
@media (min-width: 20.625em) and (max-width: 47.99em) {
  .sidebar {
    position: fixed;
    top: 4.6rem;
    left: 0;
    width: auto;
    height: calc(100dvh - 4.6rem);
    background-color: rgba(255, 255, 255, 0.7843137255);
    -webkit-backdrop-filter: blur(0.5rem);
    backdrop-filter: blur(0.5rem);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: 0.3s ease;
    z-index: 800;
  }
  .sidebar .black-space {
    margin-top: 1rem;
  }
  .sidebar .side-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    padding: 1rem 1.5rem;
    margin: 0.6rem 0.8rem;
    border-radius: 0.6rem;
    color: #131313;
  }
  .sidebar .side-option:hover {
    background: #b18dff;
    color: #ffffff;
  }
  .sidebar .side-option span {
    display: none;
  }
  .sidebar .side-option i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    font-size: 1.7rem;
  }
  .content {
    width: 100%;
    min-height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
  }
}
.sidebar.active {
  transform: translateX(0);
}

@media (min-width: 20.625em) and (max-width: 47.99em) {
  footer {
    position: relative;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 0.9rem;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  footer::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d8d8d8;
    position: absolute;
    top: 0;
    left: 0;
  }
  footer .links {
    display: flex;
    gap: 0.8rem;
    color: #191919;
  }
  footer .links .footer-icon {
    font-size: 1.5rem;
    transition: 0.1s;
  }
  footer .links .footer-icon:hover {
    color: #8985ff;
  }
  .footer-login {
    padding: 1rem;
    gap: 1rem;
    position: absolute;
    bottom: 0;
    width: 100vw;
    color: #131313;
  }
  .footer-login::before {
    content: "";
    width: 100%;
    height: 1px;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
  }
  .footer-login .login-icon {
    font-size: 1.5rem;
    transition: 0.1s;
    color: #131313;
  }
  .footer-login .login-icon:hover {
    color: #8985ff;
  }
}
@media (min-width: 48em) and (max-width: 63.99em) {
  .footer-login {
    height: 4rem;
    position: absolute;
    bottom: 0;
    width: 100vw;
    color: #ffffff;
  }
  .footer-login::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d8d8d8;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
  }
  .footer-login .login-icon {
    font-size: 1.5rem;
    transition: 0.1s;
    color: #ffffff;
  }
  .footer-login .login-icon:hover {
    color: #191919;
  }
  footer {
    position: relative;
    margin-top: 3rem;
    height: 5.5rem;
    width: 100%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    gap: 2rem;
  }
  footer::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d8d8d8;
    position: absolute;
    top: 0;
    left: 0;
  }
  footer .links {
    display: flex;
    gap: 0.8rem;
    color: #191919;
  }
  footer .links .footer-icon {
    font-size: 1.5rem;
    transition: 0.1s;
  }
  footer .links .footer-icon:hover {
    color: #8985ff;
  }
}
@media (min-width: 64em) and (max-width: 81.24em) {
  .footer-login {
    position: absolute;
    bottom: 0;
    width: 100vw;
    color: #ffffff;
  }
  .footer-login::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d8d8d8;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
  }
  .footer-login .login-icon {
    font-size: 1.8rem;
    transition: 0.1s;
    color: #ffffff;
  }
  .footer-login .login-icon:hover {
    color: #191919;
  }
  footer {
    position: relative;
    margin-top: 3.5rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  footer::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d8d8d8;
    position: absolute;
    top: 0;
    left: 0;
  }
  footer .links {
    display: flex;
    gap: 0.8rem;
    color: #191919;
  }
  footer .links .footer-icon {
    font-size: 1.8rem;
    transition: 0.1s;
  }
  footer .links .footer-icon:hover {
    color: #8985ff;
  }
}
@media (min-width: 81.25em) {
  .footer-login {
    position: absolute;
    bottom: 0;
    width: 100vw;
    color: #ffffff;
  }
  .footer-login::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d8d8d8;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
  }
  .footer-login .login-icon {
    font-size: 1.8rem;
    transition: 0.1s;
    color: #ffffff;
  }
  .footer-login .login-icon:hover {
    color: #191919;
  }
  footer {
    position: relative;
    margin-top: 4rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  footer::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d8d8d8;
    position: absolute;
    top: 0;
    left: 0;
  }
  footer .links {
    display: flex;
    gap: 0.8rem;
    color: #191919;
  }
  footer .links .footer-icon {
    font-size: 1.8rem;
    transition: 0.1s;
  }
  footer .links .footer-icon:hover {
    color: #8985ff;
  }
}
@media (min-width: 20.625em) and (max-width: 47.99em) {
  .most-popular {
    width: 90vw;
    position: relative;
    margin-top: 6.5rem;
    margin-left: 5vw;
    border-radius: 0.8rem;
    display: flex;
    color: #131313;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }
  .most-popular .most-popular-titre {
    color: #131313;
    margin: 0;
    padding: 0;
    margin-left: 2vw;
  }
  .most-popular .except-mobile {
    display: none;
  }
  .most-popular .albums {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0vw;
    margin-bottom: -0.4rem;
  }
  .most-popular .album {
    width: 45vw;
    padding: 2.5vw;
    border-radius: 0.4rem;
    cursor: pointer;
  }
  .most-popular .album .name {
    max-width: 100%;
    font-size: 0.9rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0.1rem 0;
  }
  .most-popular .album .comments {
    display: none;
  }
  .most-popular .album .cover {
    width: 100%;
    border-radius: 0.3rem;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
    transition: 0.2s ease;
  }
  .most-popular .album:hover {
    background-color: #ececec;
  }
  .most-popular .album:hover .cover {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
  }
  .most-popular .album5-5 {
    display: none;
  }
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .most-popular {
    width: 85vw;
    margin-top: 7rem;
    margin-bottom: 1rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    background: #b18dff;
    border-radius: 1rem;
    display: flex;
    color: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 0.6rem 1rem;
    gap: 0.4rem;
  }
  .most-popular .most-popular-titre {
    color: #ffffff;
    margin: 0;
    padding: 0;
  }
  .most-popular .only-mobile {
    display: none;
  }
  .most-popular .albums {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .most-popular .album {
    width: 100%;
    padding: 1vw;
    border-radius: 0.4rem;
    cursor: pointer;
  }
  .most-popular .album .name {
    max-width: 18vw;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0.1rem 0;
  }
  .most-popular .album .comments {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0.7;
    font-size: 0.8rem;
  }
  .most-popular .album .cover {
    width: 100%;
    border-radius: 0.3rem;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
    transition: 0.2s ease;
  }
  .most-popular .album:hover {
    background-color: #bd9eff;
  }
  .most-popular .album:hover .cover {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
  }
  .most-popular .album5-5 {
    display: none;
  }
}

@media (min-width: 64em) and (max-width: 81.24em) {
  .most-popular {
    width: 85vw;
    margin-top: 8rem;
    padding: 0.8rem 0;
    margin-bottom: 2rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    background: #b18dff;
    border-radius: 1rem;
    display: flex;
    color: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }
  .most-popular .most-popular-titre {
    color: #ffffff;
    margin: 0;
    padding: 0;
    margin-left: 3.5vw;
  }
  .most-popular .only-mobile {
    display: none;
  }
  .most-popular .albums {
    width: 79vw;
    display: flex;
    justify-content: space-between;
  }
  .most-popular .album {
    cursor: pointer;
    width: 100%;
    padding: 0.8vw;
    border-radius: 0.4rem;
  }
  .most-popular .album .name {
    max-width: 14vw;
    font-size: 1.1rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0.2rem 0;
  }
  .most-popular .album .comments {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0.7;
    font-size: 0.8rem;
  }
  .most-popular .album .cover {
    width: 100%;
    border-radius: 0.3rem;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
    transition: 0.2s ease;
  }
  .most-popular .album:hover {
    background-color: #bd9eff;
  }
  .most-popular .album:hover .cover {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
  }
}

@media (min-width: 81.25em) {
  .most-popular {
    width: 81vw;
    padding: 1rem 0;
    margin-top: 8.5rem;
    margin-bottom: 2rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    background: #b18dff;
    border-radius: 1rem;
    display: flex;
    color: #ffffff;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .most-popular .most-popular-titre {
    margin: 0;
    padding: 0;
    color: #ffffff;
    margin-left: 3.5vw;
    cursor: pointer;
  }
  .most-popular .only-mobile {
    display: none;
  }
  .most-popular .albums {
    width: 76vw;
    display: flex;
    justify-content: space-between;
  }
  .most-popular .album {
    cursor: pointer;
    width: 100%;
    padding: 0.8vw;
    border-radius: 0.4rem;
  }
  .most-popular .album .name {
    max-width: 13.6vw;
    font-size: 1.2rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    margin-top: 4px;
  }
  .most-popular .album .comments {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0.7;
    font-size: 0.9rem;
  }
  .most-popular .album .cover {
    width: 100%;
    border-radius: 0.3rem;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
    transition: 0.2s ease;
  }
  .most-popular .album:hover {
    background-color: #bd9eff;
  }
  .most-popular .album:hover .cover {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
  }
}

@media (min-width: 20.625em) and (max-width: 47.99em) {
  .bottom-sections {
    width: 90vw;
    position: relative;
    margin-left: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .bottom-sections .latest-releases-titre,
  .bottom-sections .title-friend-activity {
    margin-left: 2vw;
  }
  .bottom-sections .album-10,
  .bottom-sections .album-9 {
    display: none;
  }
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .bottom-sections {
    width: 85vw;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .bottom-sections .latest-releases-titre,
  .bottom-sections .title-friend-activity {
    margin-left: 1vw;
  }
  .bottom-sections .album-10,
  .bottom-sections .album-9 {
    display: none;
  }
}

@media (min-width: 64em) and (max-width: 81.24em) {
  .bottom-sections {
    width: 85vw;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .bottom-sections .latest-releases-titre,
  .bottom-sections .title-friend-activity {
    margin-left: 1vw;
  }
}

@media (min-width: 81.25em) {
  .bottom-sections {
    width: 81vw;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .bottom-sections .latest-releases-titre,
  .bottom-sections .title-friend-activity {
    margin-left: 1vw;
  }
}

.overlay2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 0;
}

@media (min-width: 20.625em) and (max-width: 47.99em) {
  .profil-menu {
    margin-top: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 90vw;
    margin-left: 5vw;
    gap: 0.6rem;
  }
}

@media (min-width: 20.625em) and (max-width: 47.99em) {
  .profil-top {
    width: 90vw;
    position: relative;
    margin-left: 5vw;
    margin-top: 7.5rem;
    padding: 1rem 1rem;
    padding-top: 20px;
    background: white;
    border-radius: 1.1rem;
    display: flex;
    color: black;
    flex-direction: column;
    box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.2);
  }
  .profil-top .top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .profil-top .infos {
    display: flex;
    justify-content: space-between;
  }
  .profil-top .infos .left {
    display: flex;
  }
  .profil-top .pp,
  .profil-top .pp-ext {
    margin-top: -2rem;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    display: block;
  }
  .profil-top .name-and-link {
    margin-top: -0.8rem;
    display: flex;
    flex-direction: column;
    margin-left: 1rem;
  }
  .profil-top .name-and-link .name {
    font-size: 1.1rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .profil-top .number {
    font-weight: 500;
    font-size: 0.9rem;
    margin-right: 0.2rem;
  }
  .profil-top .seconde-ligne {
    display: flex;
    align-items: baseline;
  }
  .profil-top .follow-section {
    margin-left: 0.8rem;
    display: flex;
    align-items: top;
    margin-top: -5px;
    font-size: 0.9rem;
    height: 35px;
  }
  .profil-top .follow-section .number-follow {
    margin-right: 0.8rem;
    display: flex;
    align-items: center;
  }
  .profil-top .follow-section .number-follow .text {
    opacity: 0.7;
  }
  .profil-top .follow-section .number-follow:hover .link {
    text-decoration: underline;
  }
  .profil-top .follow-section .number-follow-mobile {
    display: none;
  }
  .profil-top .reviews {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
  }
  .profil-top .reviews:hover {
    text-decoration: underline;
  }
  .profil-top .reviews svg {
    width: 1rem;
    height: 1rem;
    fill: black;
    opacity: 0.8;
  }
  .profil-top .description,
  .profil-top .edit-description {
    font-size: 0.9rem;
    margin-top: 0.2rem;
  }
  .profil-top .edit-description {
    display: none;
    margin-top: 0.5rem;
  }
  .profil-top .edit-description textarea {
    background: none;
    border: 1px solid #191919;
    height: 4.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font: inherit;
    color: inherit;
    outline: none;
    resize: none;
    box-shadow: none;
    width: 100%;
  }
  .profil-top .sub {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
    margin-top: -1.9rem;
  }
  .profil-top .sub .icon {
    display: none;
  }
  .profil-top .sub .subscribe-btn,
  .profil-top .sub .unsubscribe-btn {
    padding: 0.2rem 0.6rem;
    color: #ffffff;
    background-color: #8985ff;
    font-size: 0.9rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
  }
  .profil-top .sub .subscribe-btn:hover,
  .profil-top .sub .unsubscribe-btn:hover {
    transform: scale(1.02);
  }
  .profil-top .sub .unsubscribe-btn {
    color: #131313;
    background: none;
    border: 0.1rem solid #131313;
  }
  .profil-top .modify-btn {
    display: flex;
    width: 1.4rem;
    height: 1rem;
    outline: none;
    border: none;
    background: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
  }
  .profil-top .modify-btn i {
    font-size: 1.3rem;
    color: #4d4d4d;
  }
  .profil-top .description-btns {
    display: none;
    align-items: flex-start;
    gap: 1rem;
  }
  .profil-top .description-btns .cancel-btn,
  .profil-top .description-btns .save-btn {
    padding: 0;
    font: inherit;
    margin: 0;
    outline: none;
    border: none;
    font-size: 0.8rem;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    padding: 0.4rem 0.8rem;
    color: white;
    cursor: pointer;
  }
  .profil-top .description-btns .cancel-btn {
    background: #313131;
  }
  .profil-top .description-btns .save-btn {
    background-color: #8985ff;
  }
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .profil-menu {
    margin-top: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 85vw;
    left: 50%;
    transform: translate(-50%);
    gap: 0.6rem;
  }
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .profil-top {
    width: 68vw;
    position: relative;
    margin-top: 8rem;
    left: 50%;
    padding: 1.5rem;
    padding-top: 20px;
    transform: translate(-50%);
    background: white;
    border-radius: 1.5rem;
    display: flex;
    color: black;
    flex-direction: column;
    box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.2);
  }
  .profil-top .top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .profil-top .infos {
    display: flex;
    justify-content: space-between;
  }
  .profil-top .infos .left {
    display: flex;
  }
  .profil-top .pp,
  .profil-top .pp-ext {
    margin-top: -2rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: block;
  }
  .profil-top .name-and-link {
    margin-top: -0.8rem;
    display: flex;
    flex-direction: column;
    margin-left: 1.5rem;
  }
  .profil-top .name-and-link .name {
    font-size: 1.2rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .profil-top .number {
    font-weight: 500;
    font-size: 1.1rem;
    margin-right: 0.2rem;
  }
  .profil-top .seconde-ligne {
    display: flex;
    align-items: baseline;
  }
  .profil-top .follow-section {
    margin-left: 20px;
    display: flex;
    align-items: top;
    margin-top: -5px;
    height: 35px;
  }
  .profil-top .follow-section .number-follow {
    margin-right: 20px;
    display: flex;
    align-items: center;
  }
  .profil-top .follow-section .number-follow .text {
    opacity: 0.7;
    font-size: 17px;
  }
  .profil-top .follow-section .number-follow:hover .link {
    text-decoration: underline;
  }
  .profil-top .reviews {
    margin-top: -0.2rem;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
  }
  .profil-top .reviews:hover {
    text-decoration: underline;
  }
  .profil-top .reviews svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: black;
    opacity: 0.8;
  }
  .profil-top .description,
  .profil-top .edit-description {
    font-size: 1rem;
    margin-top: 1rem;
  }
  .profil-top .edit-description {
    display: none;
  }
  .profil-top .edit-description textarea {
    background: none;
    border: 1px solid #191919;
    height: 4.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font: inherit;
    color: inherit;
    outline: none;
    resize: none;
    box-shadow: none;
    width: 100%;
  }
  .profil-top .sub {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
    margin-top: -1.9rem;
  }
  .profil-top .sub .icon {
    display: none;
  }
  .profil-top .sub .subscribe-btn,
  .profil-top .sub .unsubscribe-btn {
    padding: 0.2rem 0.6rem;
    color: #ffffff;
    background-color: #8985ff;
    font-size: 1rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
  }
  .profil-top .sub .subscribe-btn:hover,
  .profil-top .sub .unsubscribe-btn:hover {
    transform: scale(1.02);
  }
  .profil-top .sub .unsubscribe-btn {
    color: #131313;
    background: none;
    border: 0.1rem solid #131313;
  }
  .profil-top .modify-btn {
    display: flex;
    width: 1.9rem;
    height: 1.4rem;
    align-items: center;
    outline: none;
    border: none;
    background: none;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
  }
  .profil-top .modify-btn i {
    font-size: 1.3rem;
    color: #4d4d4d;
  }
  .profil-top .description-btns {
    display: none;
    align-items: flex-start;
    gap: 1rem;
  }
  .profil-top .description-btns .cancel-btn,
  .profil-top .description-btns .save-btn {
    padding: 0;
    font: inherit;
    margin: 0;
    outline: none;
    border: none;
    font-size: 0.8rem;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    padding: 0.4rem 0.8rem;
    color: white;
    cursor: pointer;
  }
  .profil-top .description-btns .cancel-btn {
    background: #313131;
  }
  .profil-top .description-btns .save-btn {
    background-color: #8985ff;
  }
}

@media (min-width: 64em) and (max-width: 81.24em) {
  .profil-menu {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 85vw;
    left: 50%;
    transform: translate(-50%);
    gap: 0.6rem;
  }
}

@media (min-width: 64em) and (max-width: 81.24em) {
  .profil-top {
    width: 62vw;
    position: relative;
    margin-top: 9rem;
    left: 50%;
    padding: 1.5rem;
    padding-top: 20px;
    transform: translate(-50%);
    background: white;
    border-radius: 1.5rem;
    display: flex;
    color: black;
    flex-direction: column;
    box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.2);
  }
  .profil-top .top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .profil-top .infos {
    display: flex;
    justify-content: space-between;
  }
  .profil-top .infos .left {
    display: flex;
  }
  .profil-top .pp,
  .profil-top .pp-ext {
    margin-top: -2.5rem;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: block;
  }
  .profil-top .name-and-link {
    margin-top: -0.5rem;
    display: flex;
    flex-direction: column;
    margin-left: 1.5rem;
  }
  .profil-top .name-and-link .name {
    font-size: 1.4rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .profil-top .number {
    font-weight: 500;
    font-size: 1.2rem;
    margin-right: 0.2rem;
  }
  .profil-top .seconde-ligne {
    display: flex;
    align-items: baseline;
  }
  .profil-top .follow-section {
    margin-left: 20px;
    display: flex;
    align-items: top;
    margin-top: -5px;
    height: 35px;
  }
  .profil-top .follow-section .number-follow {
    margin-right: 20px;
    display: flex;
    align-items: center;
  }
  .profil-top .follow-section .number-follow .text {
    opacity: 0.7;
    font-size: 17px;
  }
  .profil-top .follow-section .number-follow:hover .link {
    text-decoration: underline;
  }
  .profil-top .reviews {
    margin-top: -0.2rem;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
  }
  .profil-top .reviews:hover {
    text-decoration: underline;
  }
  .profil-top .reviews svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: black;
    opacity: 0.8;
    margin-top: -0.1rem;
  }
  .profil-top .description,
  .profil-top .edit-description {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }
  .profil-top .edit-description {
    display: none;
  }
  .profil-top .edit-description textarea {
    background: none;
    border: 1px solid #191919;
    height: 5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font: inherit;
    color: inherit;
    outline: none;
    resize: none;
    box-shadow: none;
    width: 100%;
  }
  .profil-top .sub {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
    margin-top: -1.9rem;
  }
  .profil-top .sub .icon {
    display: none;
  }
  .profil-top .sub .subscribe-btn,
  .profil-top .sub .unsubscribe-btn {
    padding: 0.2rem 0.6rem;
    color: #ffffff;
    background-color: #8985ff;
    font-size: 1rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
  }
  .profil-top .sub .subscribe-btn:hover,
  .profil-top .sub .unsubscribe-btn:hover {
    transform: scale(1.02);
  }
  .profil-top .sub .unsubscribe-btn {
    color: #131313;
    background: none;
    border: 0.1rem solid #131313;
  }
  .profil-top .modify-btn {
    display: flex;
    width: 1.9rem;
    outline: none;
    border: none;
    background: none;
    height: 1.4rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
  }
  .profil-top .modify-btn i {
    font-size: 1.5rem;
    color: #4d4d4d;
  }
  .profil-top .description-btns {
    display: none;
    align-items: flex-start;
    gap: 1rem;
  }
  .profil-top .description-btns .cancel-btn,
  .profil-top .description-btns .save-btn {
    padding: 0;
    font: inherit;
    margin: 0;
    outline: none;
    border: none;
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    padding: 0.3rem 0.8rem;
    color: white;
    cursor: pointer;
  }
  .profil-top .description-btns .cancel-btn {
    background: #313131;
  }
  .profil-top .description-btns .save-btn {
    background-color: #8985ff;
  }
}

@media (min-width: 81.25em) {
  .profil-menu {
    margin-top: 3rem;
    margin-bottom: 2.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 81vw;
    left: 50%;
    transform: translate(-50%);
    gap: 0.6rem;
  }
}

@media (min-width: 81.25em) {
  .profil-top {
    width: 54vw;
    position: relative;
    margin-top: 9rem;
    left: 50%;
    padding: 1rem 1.5rem;
    padding-top: 20px;
    transform: translate(-50%);
    background: white;
    border-radius: 1.5rem;
    display: flex;
    color: black;
    flex-direction: column;
    box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.2);
  }
  .profil-top .top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .profil-top .infos {
    display: flex;
    justify-content: space-between;
  }
  .profil-top .infos .left {
    display: flex;
  }
  .profil-top .pp,
  .profil-top .pp-ext {
    margin-top: -2.5rem;
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50%;
    display: block;
  }
  .profil-top .name-and-link {
    margin-top: -0.5rem;
    display: flex;
    flex-direction: column;
    margin-left: 1.5rem;
  }
  .profil-top .name-and-link .name {
    font-size: 1.4rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .profil-top .number {
    font-weight: 500;
    font-size: 1.2rem;
    margin-right: 0.2rem;
  }
  .profil-top .seconde-ligne {
    display: flex;
    align-items: baseline;
  }
  .profil-top .follow-section {
    margin-left: 20px;
    display: flex;
    align-items: top;
    margin-top: -5px;
    height: 35px;
  }
  .profil-top .follow-section .number-follow {
    margin-right: 20px;
    display: flex;
    align-items: center;
  }
  .profil-top .follow-section .number-follow .text {
    opacity: 0.7;
    font-size: 17px;
  }
  .profil-top .follow-section .number-follow:hover .link {
    text-decoration: underline;
  }
  .profil-top .reviews {
    margin-top: -0.2rem;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
  }
  .profil-top .reviews:hover {
    text-decoration: underline;
  }
  .profil-top .reviews svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: black;
    opacity: 0.8;
    margin-top: -0.1rem;
  }
  .profil-top .description,
  .profil-top .edit-description {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }
  .profil-top .edit-description {
    display: none;
  }
  .profil-top .edit-description textarea {
    background: none;
    border: 1px solid #191919;
    height: 5rem;
    padding: 0.6rem;
    border-radius: 0.5rem;
    font: inherit;
    color: inherit;
    outline: none;
    resize: none;
    box-shadow: none;
    width: 100%;
  }
  .profil-top .sub {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
    margin-top: -1.9rem;
  }
  .profil-top .sub .icon {
    display: none;
  }
  .profil-top .sub .subscribe-btn,
  .profil-top .sub .unsubscribe-btn {
    padding: 0.2rem 0.6rem;
    color: #ffffff;
    background-color: #8985ff;
    font-size: 1rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
  }
  .profil-top .sub .subscribe-btn:hover,
  .profil-top .sub .unsubscribe-btn:hover {
    transform: scale(1.02);
  }
  .profil-top .sub .unsubscribe-btn {
    color: #131313;
    background: none;
    border: 0.1rem solid #131313;
  }
  .profil-top .modify-btn {
    display: flex;
    width: 1.9rem;
    height: 1.4rem;
    outline: none;
    background: none;
    border: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
  }
  .profil-top .modify-btn i {
    font-size: 1.5rem;
    color: #4d4d4d;
  }
  .profil-top .description-btns {
    display: none;
    align-items: flex-start;
    gap: 1rem;
  }
  .profil-top .description-btns .cancel-btn,
  .profil-top .description-btns .save-btn {
    padding: 0;
    font: inherit;
    margin: 0;
    outline: none;
    border: none;
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    padding: 0.3rem 0.8rem;
    color: white;
    cursor: pointer;
  }
  .profil-top .description-btns .cancel-btn {
    background: #313131;
  }
  .profil-top .description-btns .save-btn {
    background-color: #8985ff;
  }
}

@media (min-width: 20.625em) and (max-width: 47.99em) {
  .profile-bottom {
    width: 90vw;
    position: relative;
    margin-left: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .profile-bottom .empty,
  .profile-bottom .empty-ext {
    width: 90vw;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    height: 500px;
    font-size: 18px;
  }
  .profile-bottom .empty i,
  .profile-bottom .empty-ext i {
    margin-left: 12px;
    font-size: 22px;
  }
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .profile-bottom {
    width: 85vw;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .profile-bottom .empty {
    width: 85vw;
    display: flex;
    justify-content: center;
    height: 400px;
    font-size: 22px;
  }
  .profile-bottom .empty i {
    margin-left: 12px;
    font-size: 26px;
  }
  .profile-bottom .empty-ext {
    width: 85vw;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    height: 400px;
    font-size: 22px;
  }
  .profile-bottom .empty-ext i {
    margin-left: 12px;
    font-size: 26px;
  }
}

@media (min-width: 64em) and (max-width: 81.24em) {
  .profile-bottom {
    width: 85vw;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .profile-bottom .empty {
    width: 85vw;
    display: flex;
    justify-content: center;
    height: 400px;
    font-size: 24px;
  }
  .profile-bottom .empty i {
    margin-left: 12px;
    font-size: 27px;
  }
  .profile-bottom .empty-ext {
    width: 85vw;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    height: 400px;
    font-size: 24px;
  }
  .profile-bottom .empty-ext i {
    margin-left: 12px;
    font-size: 27px;
  }
}

@media (min-width: 81.25em) {
  .profile-bottom {
    width: 81vw;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -1rem;
  }
  .profile-bottom .empty {
    width: 81vw;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    height: 500px;
    font-size: 27px;
  }
  .profile-bottom .empty i {
    margin-left: 15px;
    font-size: 30px;
  }
  .profile-bottom .empty-ext {
    width: 81vw;
    display: flex;
    justify-content: center;
    margin-top: 60px;
    height: 500px;
    font-size: 27px;
  }
  .profile-bottom .empty-ext i {
    margin-left: 15px;
    font-size: 30px;
  }
}

@media (min-width: 20.625em) and (max-width: 47.99em) {
  .page {
    width: 90vw;
    position: relative;
    margin-top: 2rem;
    margin-left: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page .empty {
    margin-top: 2rem;
    width: 90vw;
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
  }
  .page .empty i {
    margin-top: 3px;
    font-size: 1.7rem;
  }
  .page .month {
    margin-top: 2rem;
  }
  .page .diary {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page .diary .day {
    margin: 0.5rem 0;
    width: 45vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #131313;
  }
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .page {
    width: 85vw;
    position: relative;
    left: 50%;
    margin-top: 2rem;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page .empty {
    width: 85vw;
    display: flex;
    justify-content: center;
    height: 400px;
    font-size: 24px;
  }
  .page .empty i {
    margin-left: 10px;
    margin-top: 4px;
    font-size: 27px;
  }
  .page .month {
    margin-top: 2rem;
  }
  .page .diary {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page .diary .day {
    margin: 0.5rem 0;
    width: 21.25vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: #131313;
  }
}

@media (min-width: 64em) and (max-width: 81.24em) {
  .page {
    width: 85vw;
    position: relative;
    left: 50%;
    margin-top: 2rem;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page .empty {
    width: 85vw;
    display: flex;
    justify-content: center;
    height: 400px;
    font-size: 24px;
  }
  .page .empty i {
    margin-left: 10px;
    margin-top: 4px;
    font-size: 27px;
  }
  .page .month {
    margin-top: 2rem;
    color: #131313;
  }
  .page .diary {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page .diary .day {
    margin: 0.5rem 0;
    width: 17vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: #131313;
  }
}

@media (min-width: 81.25em) {
  .page {
    margin-top: 2rem;
    width: 81vw;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page .empty {
    width: 81vw;
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    height: 500px;
    font-size: 27px;
  }
  .page .empty i {
    margin-left: 12px;
    margin-top: 4px;
    font-size: 30px;
  }
  .page .month {
    margin-top: 2.5rem;
    color: #131313;
  }
  .page .diary {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page .diary .day {
    margin-top: 20px;
    margin-bottom: 10px;
    width: 16.2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: #131313;
  }
}

@media (min-width: 20.625em) and (max-width: 47.99em) {
  .reviews-page {
    width: 90vw;
    position: relative;
    margin-top: 2rem;
    margin-left: 5vw;
    display: flex;
    flex-direction: column;
  }
  .reviews-page .empty {
    width: 90vw;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    height: 500px;
    font-size: 18px;
  }
  .reviews-page .empty i {
    margin-left: 12px;
    font-size: 22px;
  }
  .reviews-page .empty-ext {
    width: 90vw;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    height: 500px;
    font-size: 18px;
  }
  .reviews-page .empty-ext i {
    margin-left: 10px;
    margin-top: 2.5px;
    font-size: 22px;
  }
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .reviews-page {
    width: 85vw;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
  }
  .reviews-page .empty {
    width: 85vw;
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
    height: 400px;
    font-size: 22px;
  }
  .reviews-page .empty i {
    margin-left: 12px;
    font-size: 26px;
  }
  .reviews-page .empty-ext {
    width: 85vw;
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
    height: 400px;
    font-size: 22px;
  }
  .reviews-page .empty-ext i {
    margin-left: 9px;
    margin-top: 4px;
    font-size: 26px;
  }
  .reviews-page .all-reviews-phone {
    display: none;
  }
}

@media (min-width: 64em) and (max-width: 81.24em) {
  .reviews-page {
    width: 85vw;
    margin-top: 2rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
  }
  .reviews-page .empty {
    width: 85vw;
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    height: 400px;
    font-size: 24px;
  }
  .reviews-page .empty i {
    margin-left: 12px;
    font-size: 27px;
  }
  .reviews-page .empty-ext {
    width: 85vw;
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    height: 400px;
    font-size: 24px;
  }
  .reviews-page .empty-ext i {
    margin-left: 10px;
    margin-top: 4px;
    font-size: 27px;
  }
  .reviews-page .all-reviews-phone {
    display: none;
  }
}

@media (min-width: 81.25em) {
  .reviews-page {
    width: 81vw;
    margin-top: 2rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
  }
  .reviews-page .empty {
    width: 81vw;
    display: flex;
    justify-content: center;
    margin-top: 5rem;
    height: 500px;
    font-size: 27px;
  }
  .reviews-page .empty i {
    margin-left: 15px;
    font-size: 30px;
  }
  .reviews-page .empty-ext {
    width: 81vw;
    display: flex;
    justify-content: center;
    margin-top: 5rem;
    height: 500px;
    font-size: 27px;
  }
  .reviews-page .empty-ext i {
    margin-left: 12px;
    margin-top: 4px;
    font-size: 30px;
  }
  .reviews-page .all-reviews-phone {
    display: none;
  }
}

@media (min-width: 20.625em) and (max-width: 47.99em) {
  .simple-page {
    width: 90vw;
    margin-top: 6.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-left: 5vw;
  }
  .simple-page .from-artists,
  .simple-page .latest-releases-title {
    margin-bottom: 0.8rem;
  }
  .simple-page .loading-spinner {
    margin-top: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    height: 80px;
    font-size: 40px;
  }
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .simple-page {
    width: 85vw;
    margin-top: 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }
  .simple-page .from-artists,
  .simple-page .latest-releases-title {
    margin-bottom: 1rem;
  }
  .simple-page .loading-spinner {
    margin-top: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    height: 80px;
    font-size: 40px;
  }
}

@media (min-width: 64em) and (max-width: 81.24em) {
  .simple-page {
    width: 85vw;
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }
  .simple-page .from-artists,
  .simple-page .latest-releases-title {
    margin-bottom: 1rem;
  }
  .simple-page .loading-spinner {
    margin-top: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    height: 80px;
    font-size: 40px;
  }
}

@media (min-width: 81.25em) {
  .simple-page {
    width: 81vw;
    margin-top: 8.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }
  .simple-page .from-artists,
  .simple-page .latest-releases-title {
    margin-bottom: 1rem;
  }
  .simple-page .loading-spinner {
    margin-top: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    height: 80px;
    font-size: 40px;
  }
}

@media (min-width: 20.625em) and (max-width: 47.99em) {
  .trending-reviews {
    width: 90vw;
    margin-top: 6.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-left: 5vw;
  }
  .trending-reviews .loading-spinner {
    margin-top: 25px;
    display: none;
    justify-content: center;
    align-items: center;
    height: 80px;
    font-size: 35px;
  }
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .trending-reviews {
    width: 85vw;
    margin-top: 7rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
  }
  .trending-reviews .loading-spinner {
    margin-top: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    height: 70px;
    font-size: 30px;
  }
}

@media (min-width: 64em) and (max-width: 81.24em) {
  .trending-reviews {
    width: 85vw;
    margin-top: 8rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
  }
  .trending-reviews .loading-spinner {
    margin-top: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    height: 80px;
    font-size: 40px;
  }
}

@media (min-width: 81.25em) {
  .trending-reviews {
    width: 81vw;
    margin-top: 8.5rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
  }
  .trending-reviews .loading-spinner {
    margin-top: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    height: 80px;
    font-size: 40px;
  }
  .trending-reviews .text-only {
    display: none;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1;
}

@media (min-width: 20.625em) and (max-width: 47.99em) {
  .album-page {
    margin-top: 5.5rem;
    width: 90vw;
    position: relative;
    left: 52%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .album-page .album-btn {
    display: flex;
  }
  .album-page .album {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-radius: 0.8rem;
    color: #131313;
  }
  .album-page .album .mobile-link {
    position: relative;
    margin-bottom: 0.5rem;
  }
  .album-page .album .mobile-link .link {
    background-color: #ececec;
    padding: 0.6rem 0.7rem;
    border-radius: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    gap: 0.5rem;
  }
  .album-page .album .mobile-link img {
    height: 2rem;
    width: 2rem;
    margin: 0;
  }
  .album-page .album .mobile-link:hover {
    background-color: #ffffff;
  }
  .album-page .album .cover {
    height: 68vw;
    width: 68vw;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
  }
  .album-page .album .pp {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    margin-right: 0.8rem;
  }
  .album-page .album .infos {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 90vw;
  }
  .album-page .album .infos .titre .text-mobile {
    display: -webkit-box;
    text-wrap: wrap;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
  }
  .album-page .album .infos .titre .year {
    opacity: 0.8;
    font-size: 1.2rem;
  }
  .album-page .album .infos .artist {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }
  .album-page .album .infos .artist .name {
    margin-right: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .album-page .album .infos .artist .name:hover {
    text-decoration: underline;
  }
  .album-page .album .infos .description {
    margin-top: 0.5rem;
    opacity: 0.8;
    font-size: 1rem;
  }
  .album-page .album .infos .rate {
    opacity: 0.8;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .album-page .album .infos .rate .note {
    font-size: 1rem;
    font-weight: 500;
    color: #131313;
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }
  .album-page .album .infos .rate .note i {
    margin-bottom: 0.1rem;
    font-size: 0.8rem;
  }
  .album-page .album .infos .link {
    display: none;
  }
  .album-page .actions {
    position: relative;
    height: 100px;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  .album-page .actions svg {
    fill: #ffffff;
  }
  .album-page .actions .text {
    display: none;
  }
  .album-page .actions .button-album {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #4d4d4d;
    color: #ffffff;
    width: 3rem;
    height: 3rem;
    border-radius: 0.8rem;
    font-size: 1.2rem;
    transition: 0.1s ease;
  }
  .album-page .actions .button-album:hover {
    background-color: #313131;
  }
  .album-page .actions .rate {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
  }
  .album-page .actions .rate .star {
    position: relative;
    font-size: 2rem;
    width: 1.125em;
    height: 1.125em;
    margin: 0 0.065em;
    overflow: hidden;
  }
  .album-page .actions .rate .star .fa-star-half {
    position: absolute;
    inset: 0;
    cursor: pointer;
    color: #d8d8d8;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    clip-path: inset(0 50% 0 0);
  }
  .album-page .actions .rate .star .fa-star-half.flipped {
    transform: scaleX(-1);
  }
  .album-page .actions .rate .star:has(.fa-star-half.flipped:hover) .fa-star-half.flipped {
    color: #6b68ff;
  }
  .album-page .actions .rate .star:has(.fa-star-half.flipped:hover) .fa-star-half:not(.flipped) {
    color: #6b68ff;
  }
  .album-page .actions .rate .star:has(.fa-star-half.flipped:hover) ~ .star .fa-star-half {
    color: #6b68ff;
  }
  .album-page .actions .rate .star:has(.fa-star-half:not(.flipped):hover) .fa-star-half:not(.flipped) {
    color: #6b68ff;
  }
  .album-page .actions .rate .star:has(.fa-star-half:not(.flipped):hover) ~ .star .fa-star-half {
    color: #6b68ff;
  }
  .album-page .actions .rate .star .fa-star-half.selected-star {
    color: #6b68ff;
  }
  .album-page .reviews-section {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
  }
  .album-page .reviews-section img {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
  }
  .album-page .reviews-section .reviews {
    display: flex;
    flex-direction: column;
  }
  .album-page .reviews-section .reviews .review {
    width: 90vw;
    background-color: #e4e4e4;
    padding: 0.8rem;
    border-radius: 0.6rem;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .album-page .reviews-section .reviews .review .user {
    display: flex;
    align-items: flex-start;
  }
  .album-page .reviews-section .reviews .review .user .details {
    font-size: 0.9rem;
    font-weight: bold;
    margin-left: 10px;
  }
  .album-page .reviews-section .reviews .review .user .details .name {
    max-width: 60vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
  }
  .album-page .reviews-section .reviews .review .user .details .name:hover {
    text-decoration: underline;
  }
  .album-page .reviews-section .reviews .review .user .details .rate {
    font-size: 0.9rem;
    color: #6b68ff;
  }
  .album-page .reviews-section .reviews .review .user .details .rate i {
    margin-right: -0.2rem;
  }
  .album-page .reviews-section .reviews .review .left {
    width: 35vw;
    margin-right: 20px;
  }
  .album-page .reviews-section .reviews .review .right .text-zone {
    width: 100%;
    background: #f7f7f7;
    padding: 0.5rem 0.7rem;
    border-radius: 0.6rem;
  }
  .album-page .reviews-section .reviews .review .right .text-zone:hover {
    background-color: white;
  }
  .album-page .reviews-section .reviews .review .right .text {
    font-size: 0.9rem;
    max-height: 3.5rem;
    overflow-y: auto;
    cursor: pointer;
  }
  .album-page .reviews-section .reviews .review .right .likes {
    display: flex;
    align-items: center;
    margin-top: 0.2rem;
  }
  .album-page .reviews-section .reviews .review .right .likes .like {
    width: 2.1rem;
    height: 2.1rem;
    cursor: pointer;
  }
  .album-page .reviews-section .reviews .review .right .likes .like.after {
    display: none;
  }
  .album-page .reviews-section .reviews .review .right i {
    margin-left: 0.2rem;
    font-size: 1.3rem;
    margin-right: 0.2rem;
    cursor: pointer;
    transition: 0.2 ease;
  }
  .album-page .reviews-section .reviews .review .right i:hover {
    transform: scale(1.05);
  }
  .album-page .reviews-section .reviews .review .right .fa-regular {
    color: #131313;
    transition: all 0.3s ease;
  }
  .album-page .reviews-section .reviews .review .right .fa-solid {
    color: #ee5151;
    display: none;
    transition: all 0.3s ease;
  }
  .make-review {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #e4e4e4;
    left: 50%;
    transform: translate(-50%);
    top: 9.5rem;
    border-radius: 0.8rem;
    padding: 1.2rem;
    z-index: 1000;
  }
  .make-review .album-review {
    width: 81vw;
    display: flex;
  }
  .make-review .album-review img {
    width: 20vw;
    height: auto;
    border-radius: 6px;
  }
  .make-review .album-review .infos {
    margin-left: 1.2rem;
  }
  .make-review .album-review .infos .title {
    max-width: 50vw;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.2rem;
    font-weight: bold;
  }
  .make-review .album-review .infos .date {
    font-size: 1rem;
    opacity: 0.8;
  }
  .make-review .album-review .cross {
    margin-left: auto;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .make-review .album-review .cross svg {
    width: 2rem;
    height: auto;
    fill: #858585;
  }
  .make-review .album-review .cross:hover svg {
    fill: #131313;
  }
  .make-review label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    cursor: pointer;
  }
  .make-review input[type=checkbox] {
    width: 18.5px;
    height: 18.5px;
    accent-color: #131313;
    margin-right: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .make-review input[type=checkbox]::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f00c";
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #fff;
    border-radius: 3px;
  }
  .make-review input[type=checkbox]:checked::before {
    background-color: #6b68ff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
  }
  .make-review .comment {
    margin: 1rem 0;
    width: 100%;
    height: 9rem;
  }
  .make-review .comment textarea {
    border: none;
    resize: none;
    background: #f7f7f7;
    width: 100%;
    height: 100%;
    font-size: 0.9rem;
    border-radius: 0.4rem;
    color: #131313;
    font-family: "Poppins", sans-serif;
    padding: 1rem;
  }
  .make-review .comment textarea::placeholder {
    color: #131313;
    opacity: 0.8;
  }
  .make-review .diary {
    align-self: flex-start;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
  }
  .make-review .diary label input {
    accent-color: #131313;
    margin-right: 10px;
  }
  .make-review .form-rate {
    margin-top: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
  }
  .make-review .form-rate .star {
    position: relative;
    font-size: 2.5rem;
    width: 1.125em;
    height: 1em;
    margin: 0 0.0625em;
    overflow: hidden;
  }
  .make-review .form-rate .star .fa-star-half {
    position: absolute;
    inset: 0;
    cursor: pointer;
    color: #d8d8d8;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    clip-path: inset(0 50% 0 0);
  }
  .make-review .form-rate .star .fa-star-half.flipped {
    transform: scaleX(-1);
  }
  .make-review .form-rate .star:has(.fa-star-half.flipped:hover) .fa-star-half.flipped {
    color: #6b68ff;
  }
  .make-review .form-rate .star:has(.fa-star-half.flipped:hover) .fa-star-half:not(.flipped) {
    color: #6b68ff;
  }
  .make-review .form-rate .star:has(.fa-star-half.flipped:hover) ~ .star .fa-star-half {
    color: #6b68ff;
  }
  .make-review .form-rate .star:has(.fa-star-half:not(.flipped):hover) .fa-star-half:not(.flipped) {
    color: #6b68ff;
  }
  .make-review .form-rate .star:has(.fa-star-half:not(.flipped):hover) ~ .star .fa-star-half {
    color: #6b68ff;
  }
  .make-review .form-rate .star .fa-star-half.selected-star {
    color: #6b68ff;
  }
  .make-review .btns {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
  }
  .make-review .btns .btn-add,
  .make-review .btns .btn-save {
    position: relative;
    width: 60%;
    height: 2.4rem;
    background-color: #6b68ff;
    border: none;
    outline: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: bold;
    transition: 0.2s ease;
  }
  .make-review .btns .btn-add:hover,
  .make-review .btns .btn-save:hover {
    background-color: #8985ff;
  }
  .make-review .btns .btn-save {
    width: 45%;
  }
  .make-review .btns .btn-delete {
    position: relative;
    width: 45%;
    height: 2.4rem;
    background-color: #191919;
    border: none;
    outline: none;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: bold;
  }
}
@media (min-width: 48em) and (max-width: 63.99em) {
  .album-page {
    margin-top: 7rem;
    width: 85vw;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .album-page .album-btn {
    display: flex;
  }
  .album-page .mobile-link {
    display: none;
  }
  .album-page .album {
    height: 33vw;
    padding: 1rem;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #ececec 0%, #e4e4e4 70%);
    border-radius: 1rem;
    color: #131313;
  }
  .album-page .album .cover {
    height: 100%;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
    border-radius: 0.4rem;
  }
  .album-page .album .pp {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    margin-right: 0.8rem;
  }
  .album-page .album .infos {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-width: 50vw;
    margin-left: 1.5rem;
  }
  .album-page .album .infos .titre .year {
    opacity: 0.8;
    font-size: 1.3rem;
  }
  .album-page .album .infos .artist {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .album-page .album .infos .artist .name {
    margin-right: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1rem;
  }
  .album-page .album .infos .artist .name:hover {
    text-decoration: underline;
  }
  .album-page .album .infos .description {
    margin-top: 0.5rem;
    opacity: 0.8;
    font-size: 1rem;
  }
  .album-page .album .infos .rate {
    opacity: 0.8;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .album-page .album .infos .rate .note {
    font-size: 1rem;
    font-weight: 500;
    color: #131313;
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }
  .album-page .album .infos .rate .note i {
    margin-bottom: 0.1rem;
    font-size: 0.9rem;
  }
  .album-page .album .infos .link {
    position: relative;
    margin-top: 1vw;
    display: flex;
    background-color: rgba(255, 255, 255, 0.541);
    padding: 0.5rem;
    width: 10.5rem;
    border-radius: 0.9rem;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    gap: 0.5rem;
  }
  .album-page .album .infos .link img {
    height: 1.8rem;
    width: 1.8rem;
    margin: 0;
  }
  .album-page .album .infos .link:hover {
    background-color: #ffffff;
  }
  .album-page .actions {
    position: relative;
    margin-top: 1rem;
    height: 100px;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .album-page .actions svg {
    fill: #ffffff;
  }
  .album-page .actions .button-album {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #4d4d4d;
    color: #ffffff;
    padding: 0.6rem 1rem;
    gap: 0.5rem;
    border-radius: 0.8rem;
    font-size: 1.2rem;
    transition: 0.1s ease;
  }
  .album-page .actions .button-album:hover {
    background-color: #313131;
  }
  .album-page .actions .rate {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
  }
  .album-page .actions .rate .star {
    position: relative;
    font-size: 2.5rem;
    width: 1.125em;
    height: 1.125em;
    margin: 0 0.125em;
    overflow: hidden;
  }
  .album-page .actions .rate .star .fa-star-half {
    position: absolute;
    inset: 0;
    cursor: pointer;
    color: #d8d8d8;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    clip-path: inset(0 50% 0 0);
  }
  .album-page .actions .rate .star .fa-star-half.flipped {
    transform: scaleX(-1);
  }
  .album-page .actions .rate .star:has(.fa-star-half.flipped:hover) .fa-star-half.flipped {
    color: #6b68ff;
  }
  .album-page .actions .rate .star:has(.fa-star-half.flipped:hover) .fa-star-half:not(.flipped) {
    color: #6b68ff;
  }
  .album-page .actions .rate .star:has(.fa-star-half.flipped:hover) ~ .star .fa-star-half {
    color: #6b68ff;
  }
  .album-page .actions .rate .star:has(.fa-star-half:not(.flipped):hover) .fa-star-half:not(.flipped) {
    color: #6b68ff;
  }
  .album-page .actions .rate .star:has(.fa-star-half:not(.flipped):hover) ~ .star .fa-star-half {
    color: #6b68ff;
  }
  .album-page .actions .rate .star .fa-star-half.selected-star {
    color: #6b68ff;
  }
  .album-page .reviews-section {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
  }
  .album-page .reviews-section img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
  }
  .album-page .reviews-section .reviews {
    display: flex;
    flex-direction: column;
  }
  .album-page .reviews-section .reviews .review {
    width: 85vw;
    background-color: #e4e4e4;
    padding: 0.8rem;
    border-radius: 0.6rem;
    margin: 0.5rem 0;
    display: flex;
  }
  .album-page .reviews-section .reviews .review .user {
    display: flex;
    align-items: flex-start;
  }
  .album-page .reviews-section .reviews .review .user .details {
    font-size: 1rem;
    font-weight: bold;
    margin-left: 10px;
  }
  .album-page .reviews-section .reviews .review .user .details .name {
    max-width: 10vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
  }
  .album-page .reviews-section .reviews .review .user .details .name:hover {
    text-decoration: underline;
  }
  .album-page .reviews-section .reviews .review .user .details .rate {
    margin-top: 0.3rem;
    font-size: 0.9rem;
    color: #6b68ff;
  }
  .album-page .reviews-section .reviews .review .user .details .rate i {
    margin-right: -0.2rem;
  }
  .album-page .reviews-section .reviews .review .left {
    width: 23vw;
    margin-right: 20px;
  }
  .album-page .reviews-section .reviews .review .right {
    max-width: 60vw;
  }
  .album-page .reviews-section .reviews .review .right .text-zone {
    width: 59vw;
    margin-left: -5px;
    background: #f7f7f7;
    padding: 0.8rem;
    border-radius: 1rem;
  }
  .album-page .reviews-section .reviews .review .right .text-zone:hover {
    background-color: white;
  }
  .album-page .reviews-section .reviews .review .right .text {
    font-size: 1rem;
    max-height: 100px;
    overflow-y: auto;
    cursor: pointer;
  }
  .album-page .reviews-section .reviews .review .right .likes {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
  }
  .album-page .reviews-section .reviews .review .right .likes .like {
    width: 2.4rem;
    height: 2.4rem;
    cursor: pointer;
  }
  .album-page .reviews-section .reviews .review .right .likes .like.after {
    display: none;
  }
  .album-page .reviews-section .reviews .review .right i {
    margin-left: 0.2rem;
    font-size: 1.3rem;
    margin-right: 0.2rem;
    cursor: pointer;
    transition: 0.2 ease;
  }
  .album-page .reviews-section .reviews .review .right i:hover {
    transform: scale(1.05);
  }
  .album-page .reviews-section .reviews .review .right .fa-regular {
    color: #131313;
    transition: all 0.3s ease;
  }
  .album-page .reviews-section .reviews .review .right .fa-solid {
    color: #ee5151;
    display: none;
    transition: all 0.3s ease;
  }
  .album-page .reviews-section .title {
    align-self: flex-start;
    font-size: 30px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.8px;
    color: #131313;
    margin-bottom: 20px;
  }
  .make-review {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    background: #e4e4e4;
    left: 50%;
    transform: translate(-50%);
    top: 9.5rem;
    border-radius: 15px;
    padding: 1.5rem;
    z-index: 1000;
  }
  .make-review .album-review {
    width: 65vw;
    display: flex;
  }
  .make-review .album-review img {
    width: 10vw;
    height: auto;
    border-radius: 6px;
  }
  .make-review .album-review .infos {
    margin-left: 1.5rem;
  }
  .make-review .album-review .infos .title {
    max-width: 40vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 20px;
    font-weight: bold;
  }
  .make-review .album-review .infos .date {
    font-size: 18px;
    opacity: 0.8;
  }
  .make-review .album-review .cross {
    margin-left: auto;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .make-review .album-review .cross svg {
    width: 2.5rem;
    height: auto;
    fill: #858585;
  }
  .make-review .album-review .cross:hover svg {
    fill: #131313;
  }
  .make-review label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    cursor: pointer;
  }
  .make-review input[type=checkbox] {
    width: 18.5px;
    height: 18.5px;
    accent-color: #131313;
    margin-right: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .make-review input[type=checkbox]::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f00c";
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #fff;
    border-radius: 3px;
  }
  .make-review input[type=checkbox]:checked::before {
    background-color: #6b68ff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
  }
  .make-review .comment {
    margin: 1rem 0;
    width: 65vw;
    height: 150px;
  }
  .make-review .comment textarea {
    border: none;
    resize: none;
    background: #f7f7f7;
    width: 100%;
    height: 100%;
    font-size: 0.9rem;
    border-radius: 0.6rem;
    color: #131313;
    font-family: "Poppins", sans-serif;
    padding: 1rem;
  }
  .make-review .comment textarea::placeholder {
    color: #131313;
    opacity: 0.8;
  }
  .make-review .diary {
    align-self: flex-start;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
  }
  .make-review .diary label input {
    accent-color: #131313;
    margin-right: 10px;
  }
  .make-review .form-rate {
    margin-top: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
  }
  .make-review .form-rate .star {
    position: relative;
    font-size: 2.5rem;
    width: 1.125em;
    height: 1em;
    margin: 0 0.0625em;
    overflow: hidden;
  }
  .make-review .form-rate .star .fa-star-half {
    position: absolute;
    inset: 0;
    cursor: pointer;
    color: #d8d8d8;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    clip-path: inset(0 50% 0 0);
  }
  .make-review .form-rate .star .fa-star-half.flipped {
    transform: scaleX(-1);
  }
  .make-review .form-rate .star:has(.fa-star-half.flipped:hover) .fa-star-half.flipped {
    color: #6b68ff;
  }
  .make-review .form-rate .star:has(.fa-star-half.flipped:hover) .fa-star-half:not(.flipped) {
    color: #6b68ff;
  }
  .make-review .form-rate .star:has(.fa-star-half.flipped:hover) ~ .star .fa-star-half {
    color: #6b68ff;
  }
  .make-review .form-rate .star:has(.fa-star-half:not(.flipped):hover) .fa-star-half:not(.flipped) {
    color: #6b68ff;
  }
  .make-review .form-rate .star:has(.fa-star-half:not(.flipped):hover) ~ .star .fa-star-half {
    color: #6b68ff;
  }
  .make-review .form-rate .star .fa-star-half.selected-star {
    color: #6b68ff;
  }
  .make-review .btns {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
  }
  .make-review .btns .btn-add,
  .make-review .btns .btn-save {
    position: relative;
    width: 40%;
    height: 45px;
    background-color: #6b68ff;
    border: none;
    outline: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    color: #ffffff;
    font-weight: bold;
    transition: 0.2s ease;
  }
  .make-review .btns .btn-add:hover,
  .make-review .btns .btn-save:hover {
    background-color: #8985ff;
  }
  .make-review .btns .btn-save {
    width: 30%;
  }
  .make-review .btns .btn-delete {
    position: relative;
    width: 30%;
    height: 45px;
    background-color: #191919;
    border: none;
    outline: none;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    color: #ffffff;
    font-weight: bold;
  }
}
@media (min-width: 64em) and (max-width: 81.24em) {
  .album-page {
    margin-top: 8rem;
    width: 85vw;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .album-page .album-btn {
    display: flex;
  }
  .album-page .mobile-link {
    display: none;
  }
  .album-page .album {
    height: 29vw;
    padding: 1.6rem;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #ececec 0%, #e4e4e4 70%);
    border-radius: 1.2rem;
    color: #131313;
  }
  .album-page .album .cover {
    height: 100%;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
  }
  .album-page .album .pp {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    margin-right: 0.8rem;
  }
  .album-page .album .infos {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-width: 55vw;
    margin-left: 1.5rem;
  }
  .album-page .album .infos .titre .year {
    opacity: 0.8;
    font-size: 1.4rem;
  }
  .album-page .album .infos .artist {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
  }
  .album-page .album .infos .artist .name {
    margin-right: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1rem;
  }
  .album-page .album .infos .artist .name:hover {
    text-decoration: underline;
  }
  .album-page .album .infos .description {
    margin-top: 0.5rem;
    opacity: 0.8;
    font-size: 1rem;
  }
  .album-page .album .infos .rate {
    opacity: 0.8;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .album-page .album .infos .rate .note {
    font-size: 1rem;
    font-weight: 500;
    color: #131313;
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }
  .album-page .album .infos .rate .note i {
    margin-bottom: 0.1rem;
    font-size: 0.9rem;
  }
  .album-page .album .infos .link {
    position: relative;
    margin-top: 1vw;
    display: flex;
    background-color: rgba(255, 255, 255, 0.541);
    padding: 0.6rem;
    width: 12rem;
    border-radius: 1.1rem;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    gap: 0.5rem;
  }
  .album-page .album .infos .link img {
    height: 2rem;
    width: 2rem;
    margin: 0;
  }
  .album-page .album .infos .link:hover {
    background-color: #ffffff;
  }
  .album-page .actions {
    margin-top: 1rem;
    position: relative;
    height: 100px;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
  }
  .album-page .actions svg {
    fill: #ffffff;
  }
  .album-page .actions .button-album {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #4d4d4d;
    color: #ffffff;
    padding: 0.8rem 1rem;
    gap: 0.6rem;
    border-radius: 0.8rem;
    font-size: 1.2rem;
    transition: 0.1s ease;
  }
  .album-page .actions .button-album i {
    margin-top: 0.2rem;
  }
  .album-page .actions .button-album:hover {
    background-color: #313131;
  }
  .album-page .actions .rate {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
  }
  .album-page .actions .rate .star {
    position: relative;
    font-size: 2.75rem;
    width: 1.125em;
    height: 1.125em;
    margin: 0 0.125em;
    overflow: hidden;
  }
  .album-page .actions .rate .star .fa-star-half {
    position: absolute;
    inset: 0;
    cursor: pointer;
    color: #d8d8d8;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    clip-path: inset(0 50% 0 0);
  }
  .album-page .actions .rate .star .fa-star-half.flipped {
    transform: scaleX(-1);
  }
  .album-page .actions .rate .star:has(.fa-star-half.flipped:hover) .fa-star-half.flipped {
    color: #6b68ff;
  }
  .album-page .actions .rate .star:has(.fa-star-half.flipped:hover) .fa-star-half:not(.flipped) {
    color: #6b68ff;
  }
  .album-page .actions .rate .star:has(.fa-star-half.flipped:hover) ~ .star .fa-star-half {
    color: #6b68ff;
  }
  .album-page .actions .rate .star:has(.fa-star-half:not(.flipped):hover) .fa-star-half:not(.flipped) {
    color: #6b68ff;
  }
  .album-page .actions .rate .star:has(.fa-star-half:not(.flipped):hover) ~ .star .fa-star-half {
    color: #6b68ff;
  }
  .album-page .actions .rate .star .fa-star-half.selected-star {
    color: #6b68ff;
  }
  .album-page .reviews-section {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
  }
  .album-page .reviews-section img {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
  }
  .album-page .reviews-section .reviews {
    display: flex;
    flex-direction: column;
  }
  .album-page .reviews-section .reviews .review {
    width: 85vw;
    background-color: #e4e4e4;
    padding: 0.8rem;
    border-radius: 0.6rem;
    margin: 0.5rem 0;
    display: flex;
  }
  .album-page .reviews-section .reviews .review .user {
    display: flex;
    align-items: flex-start;
  }
  .album-page .reviews-section .reviews .review .user .details {
    font-size: 1rem;
    font-weight: bold;
    margin-left: 10px;
  }
  .album-page .reviews-section .reviews .review .user .details .name {
    max-width: 10vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
  }
  .album-page .reviews-section .reviews .review .user .details .name:hover {
    text-decoration: underline;
  }
  .album-page .reviews-section .reviews .review .user .details .rate {
    margin-top: 0.3rem;
    font-size: 0.9rem;
    color: #6b68ff;
  }
  .album-page .reviews-section .reviews .review .user .details .rate i {
    margin-right: -0.2rem;
  }
  .album-page .reviews-section .reviews .review .left {
    width: 16vw;
    margin-right: 20px;
  }
  .album-page .reviews-section .reviews .review .right {
    max-width: 67vw;
  }
  .album-page .reviews-section .reviews .review .right .text-zone {
    width: 66vw;
    margin-left: -5px;
    background: #f7f7f7;
    padding: 1rem;
    border-radius: 1rem;
  }
  .album-page .reviews-section .reviews .review .right .text-zone:hover {
    background-color: white;
  }
  .album-page .reviews-section .reviews .review .right .text {
    font-size: 18px;
    max-height: 100px;
    overflow-y: auto;
    cursor: pointer;
  }
  .album-page .reviews-section .reviews .review .right .likes {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
  }
  .album-page .reviews-section .reviews .review .right .likes .like {
    width: 2.4rem;
    height: 2.4rem;
    cursor: pointer;
  }
  .album-page .reviews-section .reviews .review .right .likes .like.after {
    display: none;
  }
  .album-page .reviews-section .reviews .review .right i {
    margin-left: 0.2rem;
    font-size: 1.3rem;
    margin-right: 0.2rem;
    cursor: pointer;
    transition: 0.2 ease;
  }
  .album-page .reviews-section .reviews .review .right i:hover {
    transform: scale(1.05);
  }
  .album-page .reviews-section .reviews .review .right .fa-regular {
    color: #131313;
    transition: all 0.3s ease;
  }
  .album-page .reviews-section .reviews .review .right .fa-solid {
    color: #ee5151;
    display: none;
    transition: all 0.3s ease;
  }
  .album-page .reviews-section .title {
    align-self: flex-start;
    font-size: 30px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.8px;
    color: #131313;
    margin-bottom: 20px;
  }
  .make-review {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    background: #e4e4e4;
    left: 50%;
    transform: translate(-50%);
    top: 9.5rem;
    border-radius: 3rem;
    padding: 1.5rem;
    z-index: 1000;
  }
  .make-review .album-review {
    width: 55vw;
    display: flex;
  }
  .make-review .album-review img {
    width: 10vw;
    height: auto;
    border-radius: 6px;
  }
  .make-review .album-review .infos {
    margin-left: 1.5rem;
  }
  .make-review .album-review .infos .title {
    max-width: 28vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 20px;
    font-weight: bold;
  }
  .make-review .album-review .infos .date {
    font-size: 18px;
    opacity: 0.8;
  }
  .make-review .album-review .cross {
    margin-left: auto;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .make-review .album-review .cross svg {
    width: 43px;
    height: auto;
    fill: #858585;
  }
  .make-review .album-review .cross:hover svg {
    fill: #131313;
  }
  .make-review label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    cursor: pointer;
  }
  .make-review input[type=checkbox] {
    width: 18.5px;
    height: 18.5px;
    accent-color: #131313;
    margin-right: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .make-review input[type=checkbox]::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f00c";
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #fff;
    border-radius: 3px;
  }
  .make-review input[type=checkbox]:checked::before {
    background-color: #6b68ff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
  }
  .make-review .comment {
    width: 55vw;
    height: 150px;
    margin: 1rem 0;
  }
  .make-review .comment textarea {
    border: none;
    background: #f7f7f7;
    resize: none;
    width: 100%;
    height: 100%;
    font-size: 1rem;
    border-radius: 0.6rem;
    color: #131313;
    font-family: "Poppins", sans-serif;
    padding: 1rem;
  }
  .make-review .comment textarea::placeholder {
    color: #131313;
    opacity: 0.8;
  }
  .make-review .diary {
    align-self: flex-start;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
  }
  .make-review .diary label input {
    accent-color: #131313;
    margin-right: 10px;
  }
  .make-review .form-rate {
    margin-top: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
  }
  .make-review .form-rate .star {
    position: relative;
    font-size: 2.5rem;
    width: 1.125em;
    height: 1em;
    margin: 0 0.0625em;
    overflow: hidden;
  }
  .make-review .form-rate .star .fa-star-half {
    position: absolute;
    inset: 0;
    cursor: pointer;
    color: #d8d8d8;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    clip-path: inset(0 50% 0 0);
  }
  .make-review .form-rate .star .fa-star-half.flipped {
    transform: scaleX(-1);
  }
  .make-review .form-rate .star:has(.fa-star-half.flipped:hover) .fa-star-half.flipped {
    color: #6b68ff;
  }
  .make-review .form-rate .star:has(.fa-star-half.flipped:hover) .fa-star-half:not(.flipped) {
    color: #6b68ff;
  }
  .make-review .form-rate .star:has(.fa-star-half.flipped:hover) ~ .star .fa-star-half {
    color: #6b68ff;
  }
  .make-review .form-rate .star:has(.fa-star-half:not(.flipped):hover) .fa-star-half:not(.flipped) {
    color: #6b68ff;
  }
  .make-review .form-rate .star:has(.fa-star-half:not(.flipped):hover) ~ .star .fa-star-half {
    color: #6b68ff;
  }
  .make-review .form-rate .star .fa-star-half.selected-star {
    color: #6b68ff;
  }
  .make-review .btns {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
  }
  .make-review .btns .btn-add,
  .make-review .btns .btn-save {
    position: relative;
    width: 40%;
    height: 45px;
    background-color: #6b68ff;
    border: none;
    outline: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    color: #ffffff;
    font-weight: bold;
    transition: 0.2s ease;
  }
  .make-review .btns .btn-add:hover,
  .make-review .btns .btn-save:hover {
    background-color: #8985ff;
  }
  .make-review .btns .btn-save {
    width: 30%;
  }
  .make-review .btns .btn-delete {
    position: relative;
    width: 30%;
    height: 45px;
    background-color: #191919;
    border: none;
    outline: none;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    color: #ffffff;
    font-weight: bold;
  }
}
@media (min-width: 81.25em) {
  .album-page {
    margin-top: 8.5rem;
    width: 81vw;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .album-page .album-btn {
    display: flex;
  }
  .album-page .mobile-link {
    display: none;
  }
  .album-page .album {
    height: 23.7vw;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #ececec 0%, #e4e4e4 70%);
    border-radius: 1.2rem;
    color: #131313;
  }
  .album-page .album .cover {
    margin-left: 25px;
    width: 20.2vw;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
  }
  .album-page .album .pp {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.8rem;
  }
  .album-page .album .infos {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20.2vw;
    max-width: 45vw;
    margin-left: 1.5rem;
  }
  .album-page .album .infos .titre .year {
    opacity: 0.8;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  .album-page .album .infos .artist {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  .album-page .album .infos .artist .name {
    margin-right: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
  }
  .album-page .album .infos .artist .name:hover {
    text-decoration: underline;
  }
  .album-page .album .infos .description {
    margin-top: 0.5rem;
    opacity: 0.8;
    font-size: 1.2rem;
  }
  .album-page .album .infos .rate {
    opacity: 0.8;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .album-page .album .infos .rate .note {
    font-size: 1.2rem;
    font-weight: 500;
    color: #131313;
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }
  .album-page .album .infos .rate .note i {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
  }
  .album-page .album .infos .link {
    position: relative;
    margin-top: 1vw;
    display: flex;
    background-color: rgba(255, 255, 255, 0.541);
    padding: 0.7rem;
    width: 13rem;
    border-radius: 1.2rem;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    gap: 0.5rem;
    transition: 0.1s ease;
  }
  .album-page .album .infos .link img {
    height: 2.2rem;
    width: 2.2rem;
    margin: 0;
  }
  .album-page .album .infos .link:hover {
    background-color: #ffffff;
  }
  .album-page .actions {
    margin: 3rem 0;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
  }
  .album-page .actions .button-album {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4d4d4d;
    color: #ffffff;
    padding: 0.7rem 0.9rem;
    gap: 0.6rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.3rem;
    transition: 0.1s ease;
  }
  .album-page .actions .button-album i {
    font-size: 1.3rem;
  }
  .album-page .actions .button-album:hover {
    background-color: #313131;
  }
  .album-page .actions .rate {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
  }
  .album-page .actions .rate .star {
    position: relative;
    font-size: 3rem;
    width: 1.125em;
    height: 1em;
    margin: 0 0.125em;
    overflow: hidden;
  }
  .album-page .actions .rate .star .fa-star-half {
    position: absolute;
    inset: 0;
    cursor: pointer;
    color: #d8d8d8;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    clip-path: inset(0 47% 0 0);
  }
  .album-page .actions .rate .star .fa-star-half.flipped {
    transform: scaleX(-1);
  }
  .album-page .actions .rate .star:has(.fa-star-half.flipped:hover) .fa-star-half.flipped {
    color: #6b68ff;
  }
  .album-page .actions .rate .star:has(.fa-star-half.flipped:hover) .fa-star-half:not(.flipped) {
    color: #6b68ff;
  }
  .album-page .actions .rate .star:has(.fa-star-half.flipped:hover) ~ .star .fa-star-half {
    color: #6b68ff;
  }
  .album-page .actions .rate .star:has(.fa-star-half:not(.flipped):hover) .fa-star-half:not(.flipped) {
    color: #6b68ff;
  }
  .album-page .actions .rate .star:has(.fa-star-half:not(.flipped):hover) ~ .star .fa-star-half {
    color: #6b68ff;
  }
  .album-page .actions .rate .star .fa-star-half.selected-star {
    color: #6b68ff;
  }
  .album-page .reviews-section {
    display: flex;
    flex-direction: column;
  }
  .album-page .reviews-section img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
  }
  .album-page .reviews-section .reviews {
    display: flex;
    flex-direction: column;
  }
  .album-page .reviews-section .reviews .review {
    width: 81vw;
    background-color: #e4e4e4;
    padding: 0.8rem;
    border-radius: 0.6rem;
    margin: 0.5rem 0;
    display: flex;
  }
  .album-page .reviews-section .reviews .review .user {
    display: flex;
    align-items: flex-start;
  }
  .album-page .reviews-section .reviews .review .user .details {
    font-size: 1rem;
    font-weight: bold;
    margin-left: 10px;
  }
  .album-page .reviews-section .reviews .review .user .details .name {
    max-width: 10vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
  }
  .album-page .reviews-section .reviews .review .user .details .name:hover {
    text-decoration: underline;
  }
  .album-page .reviews-section .reviews .review .user .details .rate {
    margin-top: 0.3rem;
    font-size: 1rem;
    color: #6b68ff;
  }
  .album-page .reviews-section .reviews .review .user .details .rate i {
    margin-right: -0.2rem;
  }
  .album-page .reviews-section .reviews .review .left {
    width: 15vw;
    margin-right: 20px;
  }
  .album-page .reviews-section .reviews .review .right {
    max-width: 64.2vw;
  }
  .album-page .reviews-section .reviews .review .right .text-zone {
    width: 63.5vw;
    margin-left: -5px;
    background: #f7f7f7;
    padding: 1rem;
    border-radius: 1rem;
  }
  .album-page .reviews-section .reviews .review .right .text-zone:hover {
    background-color: white;
  }
  .album-page .reviews-section .reviews .review .right .text {
    font-size: 18px;
    max-height: 100px;
    overflow-y: auto;
    cursor: pointer;
  }
  .album-page .reviews-section .reviews .review .right .likes {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
  }
  .album-page .reviews-section .reviews .review .right .likes .like {
    width: 2.4rem;
    height: 2.4rem;
    cursor: pointer;
  }
  .album-page .reviews-section .reviews .review .right .likes .like.after {
    display: none;
  }
  .album-page .reviews-section .reviews .review .right i {
    margin-left: 0.2rem;
    font-size: 1.3rem;
    margin-right: 0.2rem;
    cursor: pointer;
    transition: 0.2 ease;
  }
  .album-page .reviews-section .reviews .review .right i:hover {
    transform: scale(1.05);
  }
  .album-page .reviews-section .reviews .review .right .fa-regular {
    color: #131313;
    transition: all 0.3s ease;
  }
  .album-page .reviews-section .reviews .review .right .fa-solid {
    color: #ee5151;
    display: none;
    transition: all 0.3s ease;
  }
  .album-page .reviews-section .title {
    align-self: flex-start;
    font-size: 30px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.8px;
    color: #131313;
    margin-bottom: 20px;
  }
  .make-review {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    background: #e4e4e4;
    left: 50%;
    transform: translate(-50%);
    top: 9.5rem;
    border-radius: 1.5rem;
    padding: 1.5rem;
    z-index: 1000;
  }
  .make-review .album-review {
    width: 50vw;
    display: flex;
  }
  .make-review .album-review img {
    width: 10vw;
    height: auto;
    border-radius: 6px;
  }
  .make-review .album-review .infos {
    margin-left: 1.5rem;
  }
  .make-review .album-review .infos .title {
    max-width: 28vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 20px;
    font-weight: bold;
  }
  .make-review .album-review .infos .date {
    font-size: 18px;
    opacity: 0.8;
  }
  .make-review .album-review .cross {
    margin-left: auto;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .make-review .album-review .cross svg {
    width: 43px;
    height: auto;
    fill: #858585;
  }
  .make-review .album-review .cross:hover svg {
    fill: #131313;
  }
  .make-review label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    cursor: pointer;
  }
  .make-review input[type=checkbox] {
    width: 18.5px;
    height: 18.5px;
    accent-color: #131313;
    margin-right: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .make-review input[type=checkbox]::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f00c";
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #fff;
    border-radius: 3px;
  }
  .make-review input[type=checkbox]:checked::before {
    background-color: #6b68ff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
  }
  .make-review .comment {
    margin: 1rem 0;
    width: 50vw;
    height: 150px;
    margin-bottom: 20px;
  }
  .make-review .comment textarea {
    border: none;
    background: #f7f7f7;
    resize: none;
    width: 100%;
    height: 100%;
    font-size: 1rem;
    border-radius: 0.6rem;
    color: #131313;
    font-family: "Poppins", sans-serif;
    padding: 1rem;
    margin-top: 5px;
  }
  .make-review .comment textarea::placeholder {
    color: #131313;
    opacity: 0.8;
  }
  .make-review .diary {
    align-self: flex-start;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
  }
  .make-review .diary label input {
    accent-color: #131313;
    margin-right: 10px;
  }
  .make-review .form-rate {
    margin-top: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
  }
  .make-review .form-rate .star {
    position: relative;
    font-size: 2.5rem;
    width: 1.125em;
    height: 1em;
    margin: 0 0.0625em;
    overflow: hidden;
  }
  .make-review .form-rate .star .fa-star-half {
    position: absolute;
    inset: 0;
    cursor: pointer;
    color: #d8d8d8;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    clip-path: inset(0 50% 0 0);
  }
  .make-review .form-rate .star .fa-star-half.flipped {
    transform: scaleX(-1);
  }
  .make-review .form-rate .star:has(.fa-star-half.flipped:hover) .fa-star-half.flipped {
    color: #6b68ff;
  }
  .make-review .form-rate .star:has(.fa-star-half.flipped:hover) .fa-star-half:not(.flipped) {
    color: #6b68ff;
  }
  .make-review .form-rate .star:has(.fa-star-half.flipped:hover) ~ .star .fa-star-half {
    color: #6b68ff;
  }
  .make-review .form-rate .star:has(.fa-star-half:not(.flipped):hover) .fa-star-half:not(.flipped) {
    color: #6b68ff;
  }
  .make-review .form-rate .star:has(.fa-star-half:not(.flipped):hover) ~ .star .fa-star-half {
    color: #6b68ff;
  }
  .make-review .form-rate .star .fa-star-half.selected-star {
    color: #6b68ff;
  }
  .make-review .btns {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
  }
  .make-review .btns .btn-add,
  .make-review .btns .btn-save {
    position: relative;
    width: 40%;
    height: 45px;
    background-color: #6b68ff;
    border: none;
    outline: none;
    border-radius: 3rem;
    cursor: pointer;
    font-size: 1rem;
    color: #ffffff;
    font-weight: bold;
    transition: 0.2s ease;
  }
  .make-review .btns .btn-add:hover,
  .make-review .btns .btn-save:hover {
    background-color: #8985ff;
  }
  .make-review .btns .btn-save {
    width: 20%;
  }
  .make-review .btns .btn-delete {
    position: relative;
    width: 20%;
    height: 45px;
    background-color: #191919;
    border: none;
    outline: none;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    color: #ffffff;
    font-weight: bold;
  }
}
@media (min-width: 20.625em) and (max-width: 47.99em) {
  .artist-page {
    width: 90vw;
    margin-top: 6.5rem;
    position: relative;
    margin-left: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .artist-page .banner {
    width: 100%;
    padding: 1rem;
    background: url(/images/artist_banner.png) no-repeat;
    border-radius: 0.6rem;
    background-size: cover;
    display: flex;
    margin-bottom: 1rem;
  }
  .artist-page .first-line {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
  }
  .artist-page .first-line .artist-infos {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .artist-page .first-line .artist-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .artist-page .first-line .artist-title .desktop-artist {
    display: none;
  }
  .artist-page .first-line .artist-title .pp {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
  }
  .artist-page .first-line .artist-title .artist-name {
    display: flex;
    gap: 1rem;
  }
  .artist-page .first-line .artist-title .artist-name h1 {
    max-width: 62vw;
    font-size: 1.3rem;
  }
  .artist-page .first-line .artist-title .artist-name .stat-artist {
    display: none;
  }
  .artist-page .first-line .artist-link {
    display: flex;
    justify-content: center;
    background-color: #191919;
    color: #ffffff;
    gap: 0.8rem;
    padding: 0.3rem;
    width: 10rem;
    border-radius: 0.7rem;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
  }
  .artist-page .first-line .artist-link img {
    height: 1.4rem;
    width: 1.4rem;
    margin: 0;
  }
  .artist-page .first-line .artist-link:hover {
    background-color: rgba(30, 30, 30, 0.537254902);
  }
  .artist-page .discography {
    margin-top: 1rem;
  }
  .artist-page .discography .otherType {
    display: none;
  }
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .artist-page {
    width: 85vw;
    margin-top: 7rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .artist-page .banner {
    width: 100%;
    padding: 1.5rem 1rem;
    background: url(/images/artist_banner.png) no-repeat;
    border-radius: 0.4rem;
    background-size: cover;
    display: flex;
    flex-direction: column;
  }
  .artist-page .first-line {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .artist-page .first-line .artist-infos {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .artist-page .first-line .artist-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .artist-page .first-line .artist-title .pp {
    width: 8.5vw;
    height: 8.5vw;
    border-radius: 50%;
  }
  .artist-page .first-line .artist-title .artist-name {
    display: flex;
    gap: 1rem;
  }
  .artist-page .first-line .artist-title .artist-name h1 {
    max-width: 60vw;
    font-size: 1.5rem;
  }
  .artist-page .first-line .artist-title .artist-name .stat-artist {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    gap: 0.3rem;
  }
  .artist-page .first-line .artist-title .artist-name .stat-artist i {
    font-size: 0.9rem;
    margin-right: 1rem;
  }
  .artist-page .artist-link {
    display: flex;
    justify-content: center;
    background-color: #191919;
    color: #ffffff;
    gap: 0.8rem;
    padding: 0.3rem;
    width: 11.4rem;
    border-radius: 0.8rem;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
  }
  .artist-page .artist-link img {
    height: 1.6rem;
    width: 1.6rem;
    margin: 0;
  }
  .artist-page .artist-link:hover {
    background-color: rgba(30, 30, 30, 0.537254902);
  }
  .artist-page .discography {
    margin-top: 2rem;
  }
  .artist-page .discography .otherType {
    display: none;
  }
}

@media (min-width: 64em) and (max-width: 81.24em) {
  .artist-page {
    width: 85vw;
    margin-top: 8rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .artist-page .banner {
    width: 100%;
    padding: 2rem 1.5rem;
    background: url(/images/artist_banner.png) no-repeat;
    border-radius: 0.4rem;
    background-size: cover;
    display: flex;
    flex-direction: column;
  }
  .artist-page .first-line {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .artist-page .first-line .artist-infos {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .artist-page .first-line .artist-title {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .artist-page .first-line .artist-title .pp {
    width: 8.5vw;
    height: 8.5vw;
    border-radius: 50%;
  }
  .artist-page .first-line .artist-title .artist-name {
    display: flex;
    gap: 1.5rem;
  }
  .artist-page .first-line .artist-title .artist-name h1 {
    max-width: 60vw;
    font-size: 2rem;
  }
  .artist-page .first-line .artist-title .artist-name .stat-artist {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 500;
    opacity: 0.9;
    gap: 0.3rem;
  }
  .artist-page .first-line .artist-title .artist-name .stat-artist i {
    font-size: 1.1rem;
    margin-right: 1rem;
  }
  .artist-page .artist-link {
    display: flex;
    justify-content: center;
    background-color: #191919;
    color: #ffffff;
    gap: 0.8rem;
    padding: 0.4rem;
    width: 12.6rem;
    border-radius: 1rem;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
  }
  .artist-page .artist-link img {
    height: 1.8rem;
    width: 1.8rem;
    margin: 0;
  }
  .artist-page .artist-link:hover {
    background-color: rgba(30, 30, 30, 0.537254902);
  }
  .artist-page .discography {
    margin-top: 2rem;
  }
  .artist-page .discography .otherType {
    display: none;
  }
}

@media (min-width: 81.25em) {
  .artist-page {
    width: 81vw;
    font-family: "Poppins", sans-serif;
    margin-top: 8.5rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .artist-page .banner {
    width: 100%;
    padding: 2.5rem 2rem;
    background: url(/images/artist_banner.png) no-repeat;
    border-radius: 0.4rem;
    background-size: cover;
    display: flex;
    flex-direction: column;
  }
  .artist-page .first-line {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .artist-page .first-line .artist-infos {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .artist-page .first-line .artist-title {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .artist-page .first-line .artist-title .pp {
    width: 7.5vw;
    height: 7.5vw;
    border-radius: 50%;
  }
  .artist-page .first-line .artist-title .artist-name {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .artist-page .first-line .artist-title .artist-name h1 {
    max-width: 60vw;
    font-size: 2.5rem;
  }
  .artist-page .first-line .artist-title .artist-name .stat-artist {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
    gap: 0.3rem;
  }
  .artist-page .first-line .artist-title .artist-name .stat-artist i {
    font-size: 1.2rem;
    margin-right: 1rem;
  }
  .artist-page .artist-link {
    display: flex;
    justify-content: center;
    background-color: #191919;
    color: #ffffff;
    gap: 0.8rem;
    padding: 0.4rem;
    width: 14rem;
    border-radius: 1rem;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
  }
  .artist-page .artist-link img {
    height: 2rem;
    width: 2rem;
    margin: 0;
  }
  .artist-page .artist-link:hover {
    background-color: rgba(30, 30, 30, 0.537254902);
  }
  .artist-page .discography {
    margin-top: 2rem;
  }
  .artist-page .discography .otherType {
    display: none;
  }
}

@media (min-width: 81.25em) {
  .login-content {
    background: url(/images/background.png) no-repeat;
    background-size: 100% auto;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 112.5vw;
    position: relative;
    gap: 45vh;
  }
  .login-content .welcome-section {
    width: 81vw;
    margin-top: 10rem;
    display: flex;
    gap: 4rem;
    color: #131313;
  }
  .login-content .welcome-section .welcome-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 45%;
    gap: 1.5rem;
  }
  .login-content .welcome-section .welcome-left .title {
    font-size: 6rem;
    letter-spacing: -0.5rem;
    line-height: 0.9;
  }
  .login-content .welcome-section .welcome-left .sub-title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.15rem;
    line-height: 1.1;
  }
  .login-content .welcome-section .welcome-left .button-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .login-content .welcome-section .welcome-left .btn-signup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    background-color: #8985ff;
    color: #ffffff;
    padding: 0.8rem 1.4rem;
    border-radius: 1.4rem;
    transition: 0.1s ease;
    font-size: 1.5rem;
    letter-spacing: -0.06rem;
    font-weight: 600;
  }
  .login-content .welcome-section .welcome-left .btn-signup:hover {
    filter: brightness(1.07);
  }
  .login-content .welcome-section .welcome-left .btn-signup .logo_img {
    width: 2.5rem;
    height: 2.5rem;
  }
  .login-content .welcome-section .welcome-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 55%;
    margin-top: -2rem;
    gap: 1rem;
  }
  .login-content .welcome-section .welcome-right .image-tablet {
    display: none;
  }
  .login-content .welcome-section .welcome-right .widget {
    width: 100%;
    height: auto;
    box-shadow: 0 0 10px rgba(137, 133, 255, 0.1254901961), 0 0 20px rgba(137, 133, 255, 0.0941176471), 0 0 30px rgba(137, 133, 255, 0.0549019608), 0 4px 16px rgba(137, 133, 255, 0.031372549);
    border-radius: 1rem;
    transition: 0.2s ease;
  }
  .login-content .welcome-section .welcome-right .widget:hover {
    box-shadow: 0 0 20px rgba(137, 133, 255, 0.2549019608), 0 0 30px rgba(137, 133, 255, 0.1607843137), 0 0 40px rgba(137, 133, 255, 0.0941176471), 0 6px 24px rgba(137, 133, 255, 0.0862745098);
    transform: translateX(-2px);
  }
  .login-content .details-section {
    width: 81vw;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    color: #ffffff;
  }
  .login-content .details-section .title-phone {
    display: none;
  }
  .login-content .details-section .title {
    width: 70%;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.08rem;
    line-height: 1.1;
  }
  .login-content .details-section .btn-login {
    font-size: 1.25rem;
  }
  .login-content .details-section .btn-login .logo_img {
    width: 2rem;
  }
  .login-content .details-section .sub-title {
    width: 100%;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.3;
    text-align: justify;
  }
}
@media (min-width: 64em) and (max-width: 81.24em) {
  .login-content {
    background: url(/images/background.png) no-repeat;
    background-size: 100% auto;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 112.5vw;
    position: relative;
    gap: 25vw;
  }
  .login-content .welcome-section {
    width: 85vw;
    margin-top: 10rem;
    display: flex;
    gap: 3rem;
    color: #131313;
  }
  .login-content .welcome-section .welcome-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 45%;
    gap: 1.2rem;
  }
  .login-content .welcome-section .welcome-left .title {
    font-size: 4rem;
    letter-spacing: -0.3rem;
    line-height: 0.9;
  }
  .login-content .welcome-section .welcome-left .sub-title {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.1rem;
    line-height: 1.1;
  }
  .login-content .welcome-section .welcome-left .button-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .login-content .welcome-section .welcome-left .btn-signup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    background-color: #8985ff;
    color: #ffffff;
    padding: 0.8rem 1.4rem;
    border-radius: 1.2rem;
    transition: 0.1s ease;
    font-size: 1.2rem;
    letter-spacing: -0.06rem;
    font-weight: 600;
  }
  .login-content .welcome-section .welcome-left .btn-signup:hover {
    filter: brightness(1.07);
  }
  .login-content .welcome-section .welcome-left .btn-signup .logo_img {
    width: 2rem;
    height: auto;
  }
  .login-content .welcome-section .welcome-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 55%;
    margin-top: -2rem;
    gap: 1rem;
  }
  .login-content .welcome-section .welcome-right .image-tablet {
    display: none;
  }
  .login-content .welcome-section .welcome-right .widget {
    width: 100%;
    height: auto;
    box-shadow: 0 0 10px rgba(137, 133, 255, 0.1254901961), 0 0 20px rgba(137, 133, 255, 0.0941176471), 0 0 30px rgba(137, 133, 255, 0.0549019608), 0 4px 16px rgba(137, 133, 255, 0.031372549);
    border-radius: 1rem;
    transition: 0.2s ease;
  }
  .login-content .welcome-section .welcome-right .widget:hover {
    box-shadow: 0 0 20px rgba(137, 133, 255, 0.2549019608), 0 0 30px rgba(137, 133, 255, 0.1607843137), 0 0 40px rgba(137, 133, 255, 0.0941176471), 0 6px 24px rgba(137, 133, 255, 0.0862745098);
    transform: translateX(-2px);
  }
  .login-content .details-section {
    width: 85vw;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #ffffff;
  }
  .login-content .details-section .title-phone {
    display: none;
  }
  .login-content .details-section .title {
    width: 80%;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.05rem;
    line-height: 1.1;
  }
  .login-content .details-section .btn-login {
    font-size: 1rem;
  }
  .login-content .details-section .btn-login .logo_img {
    width: 2rem;
  }
  .login-content .details-section .sub-title {
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    text-align: justify;
  }
}
@media (min-width: 48em) and (max-width: 63.99em) {
  .login-content {
    background: url(/images/background.png) no-repeat;
    background-size: 100% auto;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 112.5vw;
    position: relative;
    gap: 32vw;
  }
  .login-content .welcome-section {
    width: 85vw;
    margin-top: 9rem;
    display: flex;
    gap: 2rem;
    color: #131313;
  }
  .login-content .welcome-section .welcome-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 45%;
    gap: 1rem;
  }
  .login-content .welcome-section .welcome-left .title {
    font-size: 3rem;
    letter-spacing: -0.2rem;
    line-height: 0.9;
  }
  .login-content .welcome-section .welcome-left .sub-title {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: -0.05rem;
    line-height: 1.1;
  }
  .login-content .welcome-section .welcome-left .button-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .login-content .welcome-section .welcome-left .btn-signup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    background-color: #8985ff;
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 1rem;
    transition: 0.1s ease;
    font-size: 1rem;
    letter-spacing: -0.06rem;
    font-weight: 600;
  }
  .login-content .welcome-section .welcome-left .btn-signup:hover {
    filter: brightness(1.07);
  }
  .login-content .welcome-section .welcome-left .btn-signup .logo_img {
    width: 1.75rem;
    height: auto;
  }
  .login-content .welcome-section .welcome-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 55%;
    margin-top: -1rem;
    gap: 1rem;
  }
  .login-content .welcome-section .welcome-right .image-tablet {
    width: 100%;
    height: auto;
    box-shadow: 0 0 10px rgba(137, 133, 255, 0.1254901961), 0 0 20px rgba(137, 133, 255, 0.0941176471), 0 0 30px rgba(137, 133, 255, 0.0549019608), 0 4px 16px rgba(137, 133, 255, 0.031372549);
    border-radius: 1rem;
  }
  .login-content .welcome-section .welcome-right .widget {
    display: none;
  }
  .login-content .details-section {
    width: 85vw;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    color: #ffffff;
  }
  .login-content .details-section .title-phone {
    display: none;
  }
  .login-content .details-section .title {
    width: 80%;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.05rem;
    line-height: 1.1;
  }
  .login-content .details-section .btn-login {
    font-size: 1rem;
  }
  .login-content .details-section .btn-login .logo_img {
    width: 2rem;
  }
  .login-content .details-section .sub-title {
    width: 100%;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.3;
    text-align: justify;
  }
}
@media (min-width: 20.625em) and (max-width: 47.99em) {
  .login-content {
    background: url(/images/background-mobile.png) no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 130vh;
    position: relative;
    gap: 17rem;
    margin-top: 10rem;
  }
  .login-content .welcome-section {
    margin-top: -2rem;
    width: 90vw;
    display: flex;
    color: #131313;
  }
  .login-content .welcome-section .welcome-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .login-content .welcome-section .welcome-left .title {
    font-size: 3.5rem;
    letter-spacing: -0.28rem;
    line-height: 0.9;
    text-align: center;
  }
  .login-content .welcome-section .welcome-left .sub-title {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.1rem;
    line-height: 1;
    text-align: center;
  }
  .login-content .welcome-section .welcome-left .button-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .login-content .welcome-section .welcome-left .btn-signup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    background-color: #8985ff;
    color: #ffffff;
    padding: 0.8rem 1.2rem;
    border-radius: 1rem;
    transition: 0.1s ease;
    font-size: 1.2rem;
    letter-spacing: -0.06rem;
    font-weight: 600;
  }
  .login-content .welcome-section .welcome-left .btn-signup:hover {
    filter: brightness(1.07);
  }
  .login-content .welcome-section .welcome-left .btn-signup .logo_img {
    width: 1.75rem;
    height: auto;
  }
  .login-content .welcome-section .welcome-right {
    display: none;
  }
  .login-content .details-section {
    width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    color: #ffffff;
  }
  .login-content .details-section .title {
    display: none;
  }
  .login-content .details-section .title-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.1rem;
    line-height: 1.1;
  }
  .login-content .details-section .btn-login {
    display: none;
  }
  .login-content .details-section .sub-title {
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    text-align: justify;
  }
}
@media (min-width: 20.625em) and (max-width: 47.99em) {
  .review-page {
    width: 90vw;
    margin-top: 6.5rem;
    position: relative;
    margin-left: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .review-page .review-box {
    width: 100%;
    background: linear-gradient(to bottom, #ececec 0%, #e4e4e4 70%);
    border-radius: 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 3vw;
  }
  .review-page .review .album {
    display: flex;
    gap: 3vw;
  }
  .review-page .review .album .cover {
    width: 7rem;
    height: 7rem;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    transition: 0.3s ease;
  }
  .review-page .review .infos {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .review-page .review .infos .name {
    gap: 0.3rem;
    padding: 0;
  }
  .review-page .review .infos .name h2 {
    max-width: 50vw;
    font-size: 1.4rem;
  }
  .review-page .review .infos .name img {
    display: none;
  }
  .review-page .review .infos .artist {
    display: none;
  }
  .review-page .review .infos .user {
    margin-top: 1.5vw;
    display: flex;
    align-items: center;
    max-width: 40vw;
    transition: 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .review-page .review .infos .user img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    margin-right: 10px;
  }
  .review-page .review .infos .user .pseudo {
    max-width: 35vw;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .review-page .review .infos .user .pseudo:hover {
    text-decoration: underline;
  }
  .review-page .review .infos .rating {
    color: #6b68ff;
    margin-top: 1.2vw;
  }
  .review-page .review .infos .rating i {
    font-size: 1rem;
    margin-right: -0.2rem;
  }
  .review-page .review .comment .text-zone {
    margin-top: 1.5vw;
    width: 84vw;
    background: #f7f7f7;
    padding: 0.8rem;
    border-radius: 0.6rem;
  }
  .review-page .review .comment .text {
    font-size: 0.9rem;
  }
  .review-page .review .comment .like-mobile {
    display: flex;
    width: 85vw;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
  }
  .review-page .review .comment .like-mobile .likes {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
  }
  .review-page .review .comment .like-mobile .likes .like {
    width: 3rem;
    height: 3rem;
    cursor: pointer;
  }
  .review-page .review .comment .like-mobile .likes .like.after {
    display: none;
  }
  .review-page .review .comment .like-mobile .mobile-link .link {
    display: flex;
    gap: 0.6rem;
    background-color: #ececec;
    padding: 0.5rem 0.6rem;
    border-radius: 0.9rem;
    font-weight: 500;
  }
  .review-page .review .comment .like-mobile .mobile-link .link:hover {
    background-color: #f7f7f7;
  }
  .review-page .review .comment .like-mobile .mobile-link .link .spotify {
    height: 1.6rem;
  }
  .review-page .review-buttons {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
  }
  .review-page .review-buttons .review-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #4d4d4d;
    color: #ffffff;
    padding: 0.7rem 0.9rem;
    gap: 0.6rem;
    border-radius: 0.6rem;
    font-size: 1rem;
    transition: 0.1s ease;
  }
  .review-page .review-buttons .review-btn i {
    font-size: 1rem;
  }
  .review-page .review-buttons .review-btn:hover {
    background-color: #313131;
  }
  .review-page .responses-section {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    width: 90vw;
  }
  .review-page .responses-section .response-card {
    margin-top: 1rem;
    width: 100%;
    background: linear-gradient(to bottom, #ececec 0%, #e4e4e4 70%);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .review-page .responses-section .response-card .user {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .review-page .responses-section .response-card .user .pp {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
  }
  .review-page .responses-section .response-card .user .pseudo {
    font-size: 0.9rem;
    font-weight: 500;
    width: 60vw;
    width: 10vw;
  }
  .review-page .responses-section .response-card .user .pseudo:hover {
    text-decoration: underline;
  }
  .review-page .responses-section .response-card .text-zone {
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    padding: 0.8rem;
    border-radius: 0.6rem;
    width: 100%;
    height: auto;
    font-size: 0.9rem;
  }
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .review-page {
    width: 85vw;
    margin-top: 7rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .review-page .review-box {
    width: 85vw;
    background: linear-gradient(to bottom, #ececec 0%, #e4e4e4 70%);
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 3vw;
  }
  .review-page .review .album {
    display: flex;
    gap: 3vw;
  }
  .review-page .review .album .cover {
    width: 11rem;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
    height: 11rem;
    border-radius: 0.3rem;
    transition: 0.3s ease;
  }
  .review-page .review .infos {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .review-page .review .infos .name {
    padding: 0;
  }
  .review-page .review .infos .name h2 {
    max-width: 30vw;
  }
  .review-page .review .infos .artist {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    gap: 1rem;
  }
  .review-page .review .infos .artist span {
    max-width: 35vw;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .review-page .review .infos .artist span:hover {
    text-decoration: underline;
  }
  .review-page .review .infos .year {
    opacity: 0.8;
  }
  .review-page .review .infos .user {
    margin-top: 1.5vw;
    display: flex;
    align-items: center;
    max-width: 40vw;
    transition: 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .review-page .review .infos .user img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    margin-right: 10px;
  }
  .review-page .review .infos .user .pseudo {
    cursor: pointer;
    font-weight: 500;
    font-size: 1.3rem;
  }
  .review-page .review .infos .user .pseudo:hover {
    text-decoration: underline;
  }
  .review-page .review .infos .rating {
    color: #6b68ff;
    margin-top: 1.2vw;
  }
  .review-page .review .infos .rating i {
    font-size: 1.2rem;
    margin-right: -0.2rem;
  }
  .review-page .review .comment .text-zone {
    margin-top: 1.5vw;
    width: 79vw;
    background: #f7f7f7;
    padding: 0.9rem;
    border-radius: 0.6rem;
  }
  .review-page .review .comment .text {
    font-size: 1rem;
  }
  .review-page .review .comment .likes {
    margin-top: 1rem;
    margin-bottom: -0.5rem;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
  }
  .review-page .review .comment .likes .like {
    width: 3.2rem;
    height: 3.2rem;
    cursor: pointer;
  }
  .review-page .review .comment .likes .like.after {
    display: none;
  }
  .review-page .review-buttons {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 1.5rem;
    margin: 1rem 0;
  }
  .review-page .review-buttons .review-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #4d4d4d;
    color: #ffffff;
    padding: 0.7rem 0.9rem;
    gap: 0.6rem;
    border-radius: 0.8rem;
    font-size: 1rem;
    transition: 0.1s ease;
  }
  .review-page .review-buttons .review-btn i {
    font-size: 1rem;
  }
  .review-page .review-buttons .review-btn:hover {
    background-color: #313131;
  }
  .review-page .responses-section {
    display: flex;
    flex-direction: column;
    width: 85vw;
  }
  .review-page .responses-section .response-card {
    margin-top: 1rem;
    width: 100%;
    background: linear-gradient(to bottom, #ececec 0%, #e4e4e4 70%);
    border-radius: 0.6rem;
    padding: 1rem;
    display: flex;
    gap: 2rem;
  }
  .review-page .responses-section .response-card .user {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .review-page .responses-section .response-card .user .pp {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
  }
  .review-page .responses-section .response-card .user .pseudo {
    font-size: 1rem;
    font-weight: 500;
    width: 10vw;
    width: 10vw;
  }
  .review-page .responses-section .response-card .user .pseudo:hover {
    text-decoration: underline;
  }
  .review-page .responses-section .response-card .text-zone {
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    padding: 0.8rem;
    border-radius: 0.8rem;
    width: 100%;
    height: auto;
    font-size: 0.9rem;
  }
  .review-page .mobile-link {
    display: none;
  }
}

@media (min-width: 64em) and (max-width: 81.24em) {
  .review-page {
    width: 85vw;
    margin-top: 8rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .review-page .mobile-link {
    display: none;
  }
  .review-page .review-box {
    width: 85vw;
    background: linear-gradient(to bottom, #ececec 0%, #e4e4e4 70%);
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 3vw;
  }
  .review-page .review .album {
    display: flex;
    gap: 3vw;
  }
  .review-page .review .album .cover {
    width: 13rem;
    height: 13rem;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    transition: 0.3s ease;
  }
  .review-page .review .infos {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .review-page .review .infos .name {
    padding: 0;
  }
  .review-page .review .infos .name h2 {
    max-width: 30vw;
  }
  .review-page .review .infos .artist {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    gap: 1rem;
  }
  .review-page .review .infos .artist span {
    max-width: 40vw;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .review-page .review .infos .artist span:hover {
    text-decoration: underline;
  }
  .review-page .review .infos .year {
    opacity: 0.8;
  }
  .review-page .review .infos .user {
    margin-top: 1.5vw;
    display: flex;
    align-items: center;
    max-width: 45vw;
    transition: 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .review-page .review .infos .user img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    margin-right: 10px;
  }
  .review-page .review .infos .user .pseudo {
    cursor: pointer;
    font-weight: 500;
    font-size: 1.3rem;
  }
  .review-page .review .infos .user .pseudo:hover {
    text-decoration: underline;
  }
  .review-page .review .infos .rating {
    color: #6b68ff;
    margin-top: 1.2vw;
  }
  .review-page .review .infos .rating i {
    font-size: 1.3rem;
    margin-right: -0.2rem;
  }
  .review-page .review .comment .text-zone {
    margin-top: 1.5vw;
    width: 79vw;
    background: #f7f7f7;
    padding: 0.9rem;
    border-radius: 0.6rem;
  }
  .review-page .review .comment .text {
    font-size: 1rem;
  }
  .review-page .review .comment .likes {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
  }
  .review-page .review .comment .likes .like {
    width: 3.5rem;
    height: 3.5rem;
    cursor: pointer;
  }
  .review-page .review .comment .likes .like.after {
    display: none;
  }
  .review-page .review-buttons {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 2rem;
    margin: 1.5rem 0;
  }
  .review-page .review-buttons .review-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #4d4d4d;
    color: #ffffff;
    padding: 0.7rem 0.9rem;
    gap: 0.6rem;
    border-radius: 0.8rem;
    font-size: 1.2rem;
    transition: 0.1s ease;
  }
  .review-page .review-buttons .review-btn i {
    font-size: 1.2rem;
  }
  .review-page .review-buttons .review-btn:hover {
    background-color: #313131;
  }
  .review-page .responses-section {
    display: flex;
    flex-direction: column;
    width: 85vw;
  }
  .review-page .responses-section .response-card {
    margin-top: 1rem;
    width: 100%;
    background: linear-gradient(to bottom, #ececec 0%, #e4e4e4 70%);
    border-radius: 0.6rem;
    padding: 1rem;
    display: flex;
    gap: 2rem;
  }
  .review-page .responses-section .response-card .user {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .review-page .responses-section .response-card .user .pp {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
  }
  .review-page .responses-section .response-card .user .pseudo {
    font-size: 1.1rem;
    font-weight: 500;
    width: 12vw;
    width: 10vw;
  }
  .review-page .responses-section .response-card .user .pseudo:hover {
    text-decoration: underline;
  }
  .review-page .responses-section .response-card .text-zone {
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    padding: 0.8rem 0.6rem;
    border-radius: 0.8rem;
    width: 100%;
    height: auto;
    font-size: 1rem;
  }
}

@media (min-width: 81.25em) {
  .review-page {
    width: 81vw;
    margin-top: 8.5rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .review-page .mobile-link {
    display: none;
  }
  .review-page .review-box {
    width: 81vw;
    background: linear-gradient(to bottom, #ececec 0%, #e4e4e4 70%);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3vw;
  }
  .review-page .review .album {
    display: flex;
    gap: 3vw;
  }
  .review-page .review .album .cover {
    width: 15rem;
    height: 15rem;
    box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    transition: 0.3s ease;
  }
  .review-page .review .infos {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .review-page .review .infos .name {
    padding: 0;
  }
  .review-page .review .infos .name h2 {
    max-width: 30vw;
  }
  .review-page .review .infos .artist {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    gap: 1rem;
  }
  .review-page .review .infos .artist span {
    max-width: 50vw;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .review-page .review .infos .artist span:hover {
    text-decoration: underline;
  }
  .review-page .review .infos .year {
    opacity: 0.8;
  }
  .review-page .review .infos .user {
    margin-top: 1.5vw;
    display: flex;
    align-items: center;
    max-width: 45vw;
    transition: 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .review-page .review .infos .user img {
    width: 55px;
    height: 55px;
    border-radius: 50px;
    margin-right: 10px;
  }
  .review-page .review .infos .user .pseudo {
    cursor: pointer;
    font-weight: 500;
    font-size: 1.3rem;
  }
  .review-page .review .infos .user .pseudo:hover {
    text-decoration: underline;
  }
  .review-page .review .infos .rating {
    color: #6b68ff;
    margin-top: 1vw;
  }
  .review-page .review .infos .rating i {
    font-size: 1.3rem;
    margin-right: -0.2rem;
  }
  .review-page .review .comment .text-zone {
    margin-top: 1.5vw;
    width: 75vw;
    background: #f7f7f7;
    padding: 0.9rem;
    border-radius: 0.6rem;
  }
  .review-page .review .comment .text {
    font-size: 1.2rem;
  }
  .review-page .review .comment .likes {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
  }
  .review-page .review .comment .likes .like {
    width: 3.5rem;
    height: 3.5rem;
    cursor: pointer;
  }
  .review-page .review .comment .likes .like.after {
    display: none;
  }
  .review-page .review-buttons {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
  }
  .review-page .review-buttons .review-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #4d4d4d;
    color: #ffffff;
    padding: 0.7rem 0.9rem;
    gap: 0.6rem;
    border-radius: 0.8rem;
    font-size: 1.3rem;
    transition: 0.1s ease;
  }
  .review-page .review-buttons .review-btn i {
    font-size: 1.3rem;
  }
  .review-page .review-buttons .review-btn:hover {
    background-color: #313131;
  }
  .review-page .responses-section {
    display: flex;
    flex-direction: column;
  }
  .review-page .responses-section .response-card {
    margin-top: 1rem;
    width: 81vw;
    background: linear-gradient(to bottom, #ececec 0%, #e4e4e4 70%);
    border-radius: 0.6rem;
    padding: 1rem;
    display: flex;
    gap: 2rem;
  }
  .review-page .responses-section .response-card .user {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .review-page .responses-section .response-card .user .pp {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
  }
  .review-page .responses-section .response-card .user .pseudo {
    font-size: 1.2rem;
    font-weight: 500;
    width: 10vw;
  }
  .review-page .responses-section .response-card .user .pseudo:hover {
    text-decoration: underline;
  }
  .review-page .responses-section .response-card .text-zone {
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    padding: 0.8rem 0.6rem;
    border-radius: 0.8rem;
    width: 100%;
    height: auto;
    font-size: 1rem;
  }
}

@media (min-width: 20.625em) and (max-width: 47.99em) {
  .friends-reviews {
    width: 90vw;
    position: relative;
    margin-left: 5vw;
    margin-top: 6.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .friends-reviews .loading-spinner {
    margin-top: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    height: 80px;
    font-size: 40px;
  }
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .friends-reviews {
    width: 85vw;
    position: relative;
    left: 50%;
    margin-top: 7rem;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .friends-reviews .loading-spinner {
    margin-top: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    height: 80px;
    font-size: 40px;
  }
}

@media (min-width: 64em) and (max-width: 81.24em) {
  .friends-reviews {
    width: 85vw;
    position: relative;
    left: 50%;
    margin-top: 8rem;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .friends-reviews .loading-spinner {
    margin-top: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    height: 80px;
    font-size: 40px;
  }
}

@media (min-width: 81.25em) {
  .friends-reviews {
    width: 81vw;
    position: relative;
    left: 50%;
    margin-top: 8.5rem;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .friends-reviews .title-friends-reviews {
    margin-bottom: 1rem;
  }
  .friends-reviews .loading-spinner {
    margin-top: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    height: 80px;
    font-size: 40px;
  }
}

@media (min-width: 20.625em) and (max-width: 47.99em) {
  .search-page {
    width: 90vw;
    margin-top: 6.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-left: 5vw;
  }
  .search-page .search-artist,
  .search-page .search-user {
    display: none;
  }
  .search-page .search-album {
    width: 90vw;
  }
  .search-page .search-album .album {
    cursor: pointer;
    display: flex;
    padding: 2vw;
  }
  .search-page .search-album .album .cover {
    width: 20vw;
    height: 20vw;
    border-radius: 5%;
  }
  .search-page .search-album .album .infos {
    margin-left: 3.5vw;
  }
  .search-page .search-album .album .infos .album-name {
    font-size: 15px;
    font-weight: bold;
    max-width: 55vw;
    display: -webkit-box;
    text-wrap: wrap;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .search-page .search-album .album .infos .artist {
    font-size: 15px;
    opacity: 0.7;
  }
  .search-page .search-album .album .nb-reviews {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .search-page .search-album .album .nb-reviews .reviews {
    font-size: 14px;
  }
  .search-page .search-album .album:hover {
    background-color: #e4e4e4;
    border-radius: 0.3rem;
  }
}
@media (min-width: 48em) and (max-width: 63.99em) {
  .search-page {
    width: 85vw;
    margin-top: 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }
  .search-page .search-album {
    width: 85vw;
  }
  .search-page .search-album .album {
    cursor: pointer;
    display: flex;
    padding: 1vw;
  }
  .search-page .search-album .album .cover {
    width: 9vw;
    border-radius: 5%;
  }
  .search-page .search-album .album .infos {
    margin-left: 2vw;
  }
  .search-page .search-album .album .infos .album-name {
    font-size: 15px;
    font-weight: bold;
    max-width: 66vw;
    display: -webkit-box;
    text-wrap: wrap;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .search-page .search-album .album .infos .artist {
    font-size: 16px;
    opacity: 0.7;
  }
  .search-page .search-album .album .nb-reviews {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .search-page .search-album .album .nb-reviews .reviews {
    font-size: 16px;
  }
  .search-page .search-album .album:hover {
    background-color: #e4e4e4;
    border-radius: 5px;
  }
}
@media (min-width: 64em) and (max-width: 81.24em) {
  .search-page {
    width: 85vw;
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }
  .search-page .search-album {
    width: 85vw;
  }
  .search-page .search-album .album {
    cursor: pointer;
    display: flex;
    padding: 1vw;
  }
  .search-page .search-album .album .cover {
    width: 7vw;
    border-radius: 5%;
  }
  .search-page .search-album .album .infos {
    margin-left: 2vw;
  }
  .search-page .search-album .album .infos .album-name {
    font-size: 18px;
    font-weight: bold;
  }
  .search-page .search-album .album .infos .artist {
    font-size: 18px;
    opacity: 0.7;
  }
  .search-page .search-album .album .nb-reviews {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .search-page .search-album .album .nb-reviews .reviews {
    font-size: 20px;
  }
  .search-page .search-album .album:hover {
    background-color: #e4e4e4;
    border-radius: 5px;
  }
}
@media (min-width: 81.25em) {
  .search-page {
    width: 81vw;
    margin-top: 8.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }
  .search-page .no-album,
  .search-page .no-artist,
  .search-page .no-user {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 300px;
    width: 81vw;
    font-size: 35px;
  }
  .search-page .search-album {
    width: 81vw;
  }
  .search-page .search-album .album {
    cursor: pointer;
    display: flex;
    padding: 1vw;
  }
  .search-page .search-album .album .cover {
    width: 7vw;
    border-radius: 0.2rem;
  }
  .search-page .search-album .album .infos {
    margin-left: 2vw;
  }
  .search-page .search-album .album .infos .album-name {
    font-size: 20px;
    font-weight: bold;
  }
  .search-page .search-album .album .infos .artist {
    font-size: 20px;
    opacity: 0.7;
  }
  .search-page .search-album .album .nb-reviews {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .search-page .search-album .album .nb-reviews .reviews {
    font-size: 20px;
  }
  .search-page .search-album .album:hover {
    background-color: #e4e4e4;
    border-radius: 5px;
  }
  .search-page .search-artist,
  .search-page .search-user {
    display: none;
  }
  .search-page .search-user {
    width: 81vw;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .search-page .search-user .user {
    margin-right: 0.7vw;
    padding: 1vw;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .search-page .search-user .user .pp {
    width: 13.5vw;
    height: 13.5vw;
    border-radius: 50%;
  }
  .search-page .search-user .user .name {
    margin-top: 1vw;
    font-size: 18px;
    font-weight: normal;
  }
  .search-page .search-user .user:hover {
    background-color: #e4e4e4;
    border-radius: 10px;
  }
}
@media (min-width: 81.25em) {
  .title-section {
    width: 81vw;
    margin-top: 140px;
    display: flex;
    flex-direction: column;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    height: 250px;
  }
  .title-section .explication {
    margin-top: 20px;
    font-size: 20px;
    text-align: justify;
  }
  .contact-section {
    margin-top: -20px;
    width: 81vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }
  .contact-section .left .circle-left {
    color: #b18dff;
  }
  .contact-section .left .circle {
    background-color: #b18dff;
    color: #ffffff;
  }
  .contact-section .left .logo {
    width: 38vw;
    font-size: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .contact-section .circle {
    padding: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #181818;
    color: #ffffff;
    transition: 0.3s ease;
  }
  .contact-section .circle1 {
    margin-top: 8px;
    font-size: 25px;
    transition: 0.3s ease;
  }
  .contact-section .circle2 {
    margin-top: -2px;
    font-size: 17px;
    transition: 0.3s ease;
  }
  .contact-section .circle3 {
    margin-top: 1px;
    margin-bottom: -22px;
    font-size: 10px;
    transition: 0.3s ease;
  }
  .contact-section .right .circle-right {
    color: #181818;
  }
  .contact-section .right .circle {
    color: #ffffff;
  }
  .contact-section .right .logo {
    width: 33vw;
    font-size: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .contact-section .patreon-title {
    align-self: flex-start;
    font-size: 25px;
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.5px;
  }
  .contact-section .patreon {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #b18dff;
    color: #ffffff;
    border-radius: 1.5rem;
    padding: 20px;
    width: 38vw;
    height: 18rem;
  }
  .contact-section .patreon .explication {
    margin-top: 20px;
    font-size: 18px;
    width: 35vw;
  }
  .contact-section .patreon .patreon-link {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .contact-section .patreon img {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
  }
  .contact-section .patreon .link {
    border: 0.1rem solid white;
    border-radius: 2rem;
    padding: 0.3rem 0.8rem;
    font-size: 1.1rem;
  }
  .contact-section .contact .contact-box {
    height: 18rem;
    background-color: #181818;
    border-radius: 1.5rem;
    padding: 1rem;
    width: 33vw;
    color: #ffffff;
  }
  .contact-section .contact .contact-box .input-box {
    background: none;
    border: 2px solid white;
    border-radius: 30px;
    margin-top: 15px;
    display: flex;
    align-items: center;
  }
  .contact-section .contact .contact-box .input-box input,
  .contact-section .contact .contact-box .input-box textarea {
    width: 30vw;
    background-color: transparent;
    color: #ffffff;
    border: none;
    outline: none;
    padding: 12px;
    font-size: 1.1rem;
  }
  .contact-section .contact .contact-box .input-box textarea {
    resize: none;
  }
  .contact-section .contact .contact-box .input-box i {
    padding: 12px;
    font-size: 1.1rem;
  }
  .contact-section .contact .contact-box .message {
    background: none;
    border: 2px solid white;
    border-radius: 1.2rem;
    height: 100px;
    display: flex;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .contact-section .contact .contact-box .message input,
  .contact-section .contact .contact-box .message textarea {
    width: 30vw;
    background-color: transparent;
    border: none;
    color: #ffffff;
    outline: none;
    padding: 12px;
    font-size: 1.1rem;
  }
  .contact-section .contact .contact-box .message textarea {
    resize: none;
  }
  .contact-section .contact .contact-box .message i {
    align-self: flex-end;
    padding: 12px;
    font-size: 1.1rem;
  }
  .contact-section .contact .contact-box .send {
    margin-top: 1.5rem;
    padding: 0.6rem 2rem;
    background-color: #ffffff;
    color: #131313;
    border: none;
    outline: none;
    border-radius: 3rem;
    cursor: pointer;
    font-size: 1.2rem;
    color: #131313;
    font-weight: 500;
    transition: 0.2s ease;
  }
  .contact-section .contact .contact-box .send:hover {
    background-color: #b18dff;
    color: #ffffff;
  }
}
@media (min-width: 64em) and (max-width: 81.24em) {
  .title-section {
    width: 85vw;
    margin-top: 130px;
    display: flex;
    flex-direction: column;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    height: 270px;
    border-radius: 20px;
    margin-bottom: 20px;
  }
  .title-section .explication {
    margin-top: 20px;
    font-size: 20px;
    text-align: justify;
  }
  .contact-section {
    margin-top: -20px;
    width: 85vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    margin-bottom: 200px;
  }
  .contact-section .left .circle {
    padding: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #ffffff;
    background-color: #b18dff;
    transition: 0.3s ease;
  }
  .contact-section .left .circle:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
  }
  .contact-section .left .circle1 {
    margin-top: 8px;
    font-size: 25px;
    color: #b18dff;
    transition: 0.3s ease;
  }
  .contact-section .left .circle2 {
    margin-top: -2px;
    font-size: 17px;
    color: #b18dff;
    transition: 0.3s ease;
  }
  .contact-section .left .circle3 {
    margin-top: 1px;
    margin-bottom: -22px;
    font-size: 10px;
    color: #b18dff;
    transition: 0.3s ease;
  }
  .contact-section .left .logo {
    width: 38vw;
    font-size: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .contact-section .right .circle {
    padding: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #ffffff;
    background-color: #181818;
    transition: 0.3s ease;
  }
  .contact-section .right .circle:hover {
    background-color: #131313;
    transform: scale(1.05);
  }
  .contact-section .right .circle1 {
    margin-top: 8px;
    font-size: 25px;
    color: #181818;
    transition: 0.3s ease;
  }
  .contact-section .right .circle1:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
  }
  .contact-section .right .circle2 {
    margin-top: -2px;
    font-size: 17px;
    color: #181818;
    transition: 0.3s ease;
  }
  .contact-section .right .circle2:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
  }
  .contact-section .right .circle3 {
    margin-top: 1px;
    margin-bottom: -22px;
    font-size: 10px;
    color: #181818;
    transition: 0.3s ease;
  }
  .contact-section .right .circle3:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
  }
  .contact-section .right .logo {
    width: 36vw;
    font-size: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .contact-section .patreon-title {
    align-self: flex-start;
    font-size: 1.2rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.5px;
  }
  .contact-section .patreon {
    background: #b18dff;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1.5rem;
    padding: 20px;
    width: 38vw;
    height: 300px;
    box-shadow: 3px 4px 16px rgba(0, 0, 0, 0.3);
  }
  .contact-section .patreon .explication {
    margin-top: 20px;
    font-size: 18px;
    width: 34vw;
  }
  .contact-section .patreon .patreon-link {
    margin-top: 40px;
    display: flex;
    align-items: center;
  }
  .contact-section .patreon img {
    margin-left: -5px;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    transition: 0.3s ease;
  }
  .contact-section .patreon .link {
    margin-left: 10px;
    margin-top: -3px;
    border: 2px solid white;
    border-radius: 20px;
    padding: 6px;
    font-size: 18px;
    padding-left: 8px;
    padding-right: 8px;
    transition: 0.3s ease;
  }
  .contact-section .contact .contact-box {
    min-height: 300px;
    background-color: #191919;
    border-radius: 1.5rem;
    padding: 1rem;
    width: 37vw;
    box-shadow: 3px 4px 16px rgba(0, 0, 0, 0.3);
  }
  .contact-section .contact .contact-box .input-box {
    background: none;
    border: 2px solid white;
    border-radius: 30px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
  }
  .contact-section .contact .contact-box .input-box input,
  .contact-section .contact .contact-box .input-box textarea {
    width: 35vw;
    background-color: transparent;
    border: none;
    color: #ffffff;
    outline: none;
    padding: 1rem;
    font-size: 1.1rem;
  }
  .contact-section .contact .contact-box .input-box textarea {
    resize: none;
  }
  .contact-section .contact .contact-box .input-box input::placeholder {
    color: #ffffff;
    opacity: 0.7;
  }
  .contact-section .contact .contact-box .input-box i {
    padding: 0.8rem;
    font-size: 1.1rem;
    color: #ffffff;
  }
  .contact-section .contact .contact-box .message {
    background: none;
    border: 2px solid white;
    border-radius: 20px;
    height: 100px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .contact-section .contact .contact-box .message input {
    width: 35vw;
    background-color: transparent;
    border: none;
    color: #ffffff;
    outline: none;
    padding: 1rem;
    font-size: 1.1rem;
  }
  .contact-section .contact .contact-box .message i {
    align-self: flex-end;
    padding: 0.8rem;
    font-size: 1.1rem;
  }
  .contact-section .contact .contact-box .send {
    margin-top: 25px;
    width: 30%;
    height: 45px;
    background-color: #ffffff;
    border: none;
    outline: none;
    border-radius: 2rem;
    cursor: pointer;
    font-size: 1rem;
    color: #131313;
    font-weight: bold;
    transition: 0.3s ease;
  }
  .contact-section .contact .contact-box .send:hover {
    background-color: #b18dff;
    color: #ffffff;
  }
}
@media (min-width: 48em) and (max-width: 63.99em) {
  .title-section {
    width: 85vw;
    margin-top: 7rem;
    display: flex;
    flex-direction: column;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    height: 270px;
    border-radius: 20px;
    margin-bottom: 20px;
  }
  .title-section .explication {
    margin-top: 20px;
    font-size: 18px;
    text-align: justify;
  }
  .contact-section {
    margin-top: -20px;
    width: 85vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    margin-bottom: 200px;
  }
  .contact-section .left .circle {
    padding: 20px;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #b18dff;
    color: #ffffff;
    transition: 0.3s ease;
  }
  .contact-section .left .circle1 {
    margin-top: 8px;
    font-size: 25px;
    color: #b18dff;
    transition: 0.3s ease;
  }
  .contact-section .left .circle2 {
    margin-top: -2px;
    font-size: 17px;
    color: #b18dff;
    transition: 0.3s ease;
  }
  .contact-section .left .circle3 {
    margin-top: 1px;
    margin-bottom: -22px;
    font-size: 10px;
    color: #b18dff;
    transition: 0.3s ease;
  }
  .contact-section .left .logo {
    width: 38vw;
    font-size: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .contact-section .right .circle {
    padding: 20px;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #181818;
    color: #ffffff;
    transition: 0.3s ease;
  }
  .contact-section .right .circle:hover {
    background-color: #131313;
    transform: scale(1.05);
  }
  .contact-section .right .circle1 {
    margin-top: 8px;
    font-size: 25px;
    color: #181818;
    transition: 0.3s ease;
  }
  .contact-section .right .circle1:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
  }
  .contact-section .right .circle2 {
    margin-top: -2px;
    font-size: 17px;
    color: #181818;
    transition: 0.3s ease;
  }
  .contact-section .right .circle2:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
  }
  .contact-section .right .circle3 {
    margin-top: 1px;
    margin-bottom: -22px;
    font-size: 10px;
    color: #181818;
    transition: 0.3s ease;
  }
  .contact-section .right .circle3:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
  }
  .contact-section .right .logo {
    width: 38vw;
    font-size: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .contact-section .patreon-title {
    font-size: 1.2rem;
    font-family: "Poppins", sans-serif;
  }
  .contact-section .patreon {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #b18dff;
    color: #ffffff;
    border-radius: 20px;
    padding: 1.2rem;
    width: 40vw;
    height: 300px;
    box-shadow: 3px 4px 16px rgba(0, 0, 0, 0.3);
  }
  .contact-section .patreon .explication {
    margin-top: 1rem;
    font-size: 1rem;
  }
  .contact-section .patreon .patreon-link {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .contact-section .patreon img {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 1rem;
    transition: 0.3s ease;
  }
  .contact-section .patreon .link {
    margin-top: -3px;
    border: 2px solid white;
    border-radius: 20px;
    padding: 6px;
    padding-left: 8px;
    padding-right: 8px;
    transition: 0.3s ease;
  }
  .contact-section .contact .contact-box {
    height: 300px;
    background-color: #191919;
    border-radius: 1rem;
    padding: 1rem;
    width: 40vw;
    box-shadow: 3px 4px 16px rgba(0, 0, 0, 0.3);
  }
  .contact-section .contact .contact-box .input-box {
    background: none;
    border: 2px solid white;
    border-radius: 30px;
    margin-top: 1rem;
    display: flex;
    color: #e4e4e4;
    align-items: center;
  }
  .contact-section .contact .contact-box .input-box input,
  .contact-section .contact .contact-box .input-box textarea {
    width: 36vw;
    background-color: transparent;
    border: none;
    color: #ffffff;
    outline: none;
    padding: 0.8rem;
    font-size: 1.1rem;
  }
  .contact-section .contact .contact-box .input-box textarea {
    resize: none;
  }
  .contact-section .contact .contact-box .input-box input::placeholder {
    color: #ffffff;
    opacity: 0.7;
  }
  .contact-section .contact .contact-box .input-box i {
    padding: 12px;
    font-size: 18px;
  }
  .contact-section .contact .contact-box .message {
    background: none;
    border: 2px solid white;
    border-radius: 20px;
    height: 100px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    display: flex;
    color: #e4e4e4;
    flex-direction: column;
    justify-content: space-between;
  }
  .contact-section .contact .contact-box .message input {
    width: 36vw;
    background-color: transparent;
    border: none;
    color: #ffffff;
    outline: none;
    padding: 12px;
    font-size: 18px;
  }
  .contact-section .contact .contact-box .message i {
    color: #e4e4e4;
    align-self: flex-end;
    padding: 12px;
    font-size: 18px;
  }
  .contact-section .contact .contact-box .send {
    margin-top: 25px;
    width: 35%;
    height: 40px;
    background-color: #ffffff;
    border: none;
    outline: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    color: #131313;
    font-weight: bold;
    transition: 0.3s ease;
  }
  .contact-section .contact .contact-box .send:hover {
    background-color: #b18dff;
    color: #f7f7f7;
  }
}
@media (min-width: 20.625em) and (max-width: 47.99em) {
  .title-section {
    width: 90vw;
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-left: 5vw;
    height: 400px;
    border-radius: 20px;
    padding: 20px;
  }
  .title-section .explication {
    margin-top: 1rem;
    font-size: 1rem;
    width: 100%;
    text-align: justify;
  }
  .contact-section {
    margin-top: -4rem;
    width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-left: 5vw;
    margin-bottom: 1rem;
  }
  .contact-section .left .circle {
    margin-top: 15px;
    padding: 20px;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #b18dff;
    color: #ffffff;
    transition: 0.3s ease;
  }
  .contact-section .left .circle1 {
    margin-top: 8px;
    font-size: 25px;
    color: #b18dff;
    transition: 0.3s ease;
  }
  .contact-section .left .circle2 {
    margin-top: -2px;
    font-size: 17px;
    color: #b18dff;
    transition: 0.3s ease;
  }
  .contact-section .left .circle3 {
    margin-top: 1px;
    margin-bottom: -22px;
    font-size: 10px;
    color: #b18dff;
    transition: 0.3s ease;
  }
  .contact-section .left .logo {
    width: 90vw;
    font-size: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .contact-section .right .circle {
    padding: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #181818;
    color: #ffffff;
    transition: 0.3s ease;
  }
  .contact-section .right .circle:hover {
    transform: scale(1.05);
  }
  .contact-section .right .circle1 {
    margin-top: 8px;
    font-size: 25px;
    color: #181818;
    transition: 0.3s ease;
  }
  .contact-section .right .circle1:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
  }
  .contact-section .right .circle2 {
    margin-top: -2px;
    font-size: 17px;
    color: #181818;
    transition: 0.3s ease;
  }
  .contact-section .right .circle2:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
  }
  .contact-section .right .circle3 {
    margin-top: 1px;
    margin-bottom: -22px;
    font-size: 10px;
    color: #181818;
    transition: 0.3s ease;
  }
  .contact-section .right .circle3:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
  }
  .contact-section .right .logo {
    width: 90vw;
    font-size: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .contact-section .patreon-title {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
  }
  .contact-section .patreon {
    background: #b18dff;
    color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    width: 81vw;
    margin-left: 5vw;
    height: 300px;
    box-shadow: 3px 4px 16px rgba(0, 0, 0, 0.3);
    margin-bottom: 50px;
  }
  .contact-section .patreon .explication {
    margin-top: 20px;
    font-size: 17px;
    width: 70vw;
  }
  .contact-section .patreon .patreon-link {
    margin-left: 6%;
    margin-top: 25px;
    display: flex;
    align-items: center;
  }
  .contact-section .patreon img {
    margin-bottom: 10px;
    width: 45px;
    height: 45px;
    border-radius: 15px;
    transition: 0.3s ease;
  }
  .contact-section .patreon .link {
    margin-bottom: 10px;
    margin-left: 10px;
    margin-top: -3px;
    border: 2px solid white;
    border-radius: 20px;
    padding: 6px;
    padding-left: 8px;
    padding-right: 8px;
    transition: 0.3s ease;
  }
  .contact-section .contact .contact-box {
    min-height: 290px;
    background-color: #191919;
    border-radius: 15px;
    padding: 15px;
    width: 81vw;
    margin-left: 5vw;
    box-shadow: 3px 4px 16px rgba(0, 0, 0, 0.3);
  }
  .contact-section .contact .contact-box .input-box {
    background: none;
    border: 2px solid white;
    border-radius: 30px;
    margin-top: 15px;
    display: flex;
    align-items: center;
  }
  .contact-section .contact .contact-box .input-box input,
  .contact-section .contact .contact-box .input-box textarea {
    width: 74vw;
    background-color: transparent;
    border: none;
    color: #ffffff;
    outline: none;
    padding: 12px;
    font-size: 18px;
  }
  .contact-section .contact .contact-box .input-box textarea {
    resize: none;
  }
  .contact-section .contact .contact-box .input-box input::placeholder {
    color: #ffffff;
    opacity: 0.7;
  }
  .contact-section .contact .contact-box .input-box i {
    padding: 12px;
    font-size: 18px;
    color: #e4e4e4;
  }
  .contact-section .contact .contact-box .message {
    background: none;
    border: 2px solid white;
    border-radius: 20px;
    height: 100px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .contact-section .contact .contact-box .message input {
    width: 74vw;
    background-color: transparent;
    border: none;
    color: #ffffff;
    outline: none;
    padding: 12px;
    font-size: 18px;
  }
  .contact-section .contact .contact-box .message i {
    align-self: flex-end;
    padding: 12px;
    font-size: 18px;
    color: #e4e4e4;
  }
  .contact-section .contact .contact-box .send {
    margin-top: 25px;
    width: 35%;
    height: 40px;
    background-color: #ffffff;
    border: none;
    outline: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    color: #131313;
    font-weight: bold;
    transition: 0.3s ease;
  }
  .contact-section .contact .contact-box .send:hover {
    background-color: #b18dff;
    color: #ffffff;
  }
}
.overlay-settings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 10;
}

@media (min-width: 81.25em) {
  .settings-section {
    width: 81vw;
    margin-top: 8.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }
  .password-section {
    width: 40vw;
    display: none;
    flex-direction: column;
    position: fixed;
    left: 50%;
    margin-top: 15rem;
    transform: translate(-50%);
    border-radius: 1.3rem;
    padding: 1.3rem;
    background-color: #e4e4e4;
    z-index: 1000;
  }
  .password-section h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .password-section h3 {
    font-weight: 200;
    margin-bottom: 10px;
  }
  .password-section .btns {
    display: flex;
    gap: 1.3rem;
  }
  .password-section .btns .btn-datas {
    width: 6.5rem;
    margin-top: 1rem;
    padding: 0.7rem 1.2rem;
    background-color: #4d4d4d;
    color: #ffffff;
    border: none;
    outline: none;
    border-radius: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: 0.2s ease;
  }
  .password-section .btns .btn-submit {
    background-color: #4d4d4d;
  }
  .password-section .btns .btn-submit:hover {
    background-color: #131313;
  }
  .password-section .btns .btn-cancel {
    background-color: #b18dff;
  }
  .password-section .btns .btn-cancel:hover {
    background-color: #bd9eff;
  }
  .infos-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .infos-section .input-title {
    font-weight: 500;
    margin-top: 1rem;
    font-size: 24px;
  }
  .infos-section .input-box {
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    border-radius: 1rem;
    font-size: 1.2rem;
    margin: 10px 0;
    background-color: #ffffff;
  }
  .infos-section .input-box p {
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .infos-section .input-box i {
    font-size: 24px;
  }
  .infos-section .input-box .fa-user {
    font-size: 22px;
  }
  .terms-section {
    display: none;
    width: 100%;
    flex-direction: column;
    position: relative;
  }
  .terms-section .terms {
    margin-top: 1rem;
    font-size: 1.2rem;
    overflow-y: auto;
  }
  .data-section {
    width: 100%;
    display: none;
    flex-direction: column;
    position: relative;
  }
  .data-section .reviews-title {
    font-weight: 500;
    font-size: 24px;
    margin-top: 1rem;
    margin-bottom: 5px;
  }
  .data-section .text {
    font-size: 1.2rem;
  }
  .data-section .btn-submit {
    margin-top: 1rem;
    padding: 0.7rem 1.2rem;
    background-color: #4d4d4d;
    color: #ffffff;
    border: none;
    outline: none;
    border-radius: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: 0.2s ease;
  }
  .data-section .btn-submit:hover {
    background-color: #ee5151;
    color: #ffffff;
  }
}
@media (min-width: 64em) and (max-width: 81.24em) {
  .settings-section {
    width: 85vw;
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }
  .password-section {
    width: 40vw;
    display: none;
    flex-direction: column;
    position: fixed;
    left: 50%;
    margin-top: 15rem;
    transform: translate(-50%);
    border-radius: 1.3rem;
    padding: 1.3rem;
    background-color: #e4e4e4;
    z-index: 1000;
  }
  .password-section h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .password-section h3 {
    font-weight: 200;
    margin-bottom: 10px;
  }
  .password-section .input-box {
    position: relative;
    width: 80%;
    height: 50px;
    margin: 10px 0;
  }
  .password-section .input-box i {
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
  }
  .password-section .input-box .fa-user {
    font-size: 22px;
  }
  .password-section .input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(235, 235, 235, 0.2);
    border-radius: 30px;
    font-size: 18px;
    color: #131313;
    padding: 20px 45px 20px 20px;
  }
  .password-section .input-box input::placeholder {
    color: #131313;
    opacity: 0.4;
  }
  .password-section .btns {
    display: flex;
    gap: 1.3rem;
  }
  .password-section .btns .btn-datas {
    width: 6.5rem;
    margin-top: 1rem;
    padding: 0.7rem 1.2rem;
    background-color: #4d4d4d;
    color: #ffffff;
    border: none;
    outline: none;
    border-radius: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: 0.2s ease;
  }
  .password-section .btns .btn-submit {
    background-color: #4d4d4d;
  }
  .password-section .btns .btn-submit:hover {
    background-color: #131313;
  }
  .password-section .btns .btn-cancel {
    background-color: #b18dff;
  }
  .password-section .btns .btn-cancel:hover {
    background-color: #bd9eff;
  }
  .infos-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .infos-section .input-title {
    font-weight: 500;
    margin-top: 1rem;
    font-size: 24px;
  }
  .infos-section .input-box {
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    border-radius: 1rem;
    font-size: 1.2rem;
    margin: 10px 0;
    background-color: #ffffff;
  }
  .infos-section .input-box p {
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .infos-section .input-box i {
    font-size: 24px;
  }
  .infos-section .input-box .fa-user {
    font-size: 22px;
  }
  .terms-section {
    display: none;
    width: 100%;
    flex-direction: column;
    position: relative;
  }
  .terms-section .terms {
    margin-top: 1rem;
    font-size: 1.2rem;
    overflow-y: auto;
  }
  .data-section {
    width: 100%;
    display: none;
    flex-direction: column;
    position: relative;
  }
  .data-section .reviews-title {
    font-weight: 500;
    font-size: 24px;
    margin-top: 1rem;
    margin-bottom: 5px;
  }
  .data-section .text {
    font-size: 1.2rem;
  }
  .data-section .btn-submit {
    margin-top: 1rem;
    padding: 0.7rem 1.2rem;
    background-color: #4d4d4d;
    color: #ffffff;
    border: none;
    outline: none;
    border-radius: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: 0.2s ease;
  }
  .data-section .btn-submit:hover {
    background-color: #ee5151;
    color: #ffffff;
  }
}
@media (min-width: 48em) and (max-width: 63.99em) {
  .settings-section {
    width: 85vw;
    margin-top: 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }
  .password-section {
    width: 60vw;
    display: none;
    flex-direction: column;
    position: fixed;
    left: 50%;
    margin-top: 15rem;
    transform: translate(-50%);
    border-radius: 1.3rem;
    padding: 1.3rem;
    background-color: #e4e4e4;
    z-index: 1000;
  }
  .password-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .password-section h3 {
    font-weight: 200;
    margin-bottom: 0.6rem;
  }
  .password-section .btns {
    display: flex;
    gap: 1.3rem;
  }
  .password-section .btns .btn-datas {
    width: 6.2rem;
    margin-top: 1rem;
    padding: 0.6rem 1rem;
    color: #ffffff;
    border: none;
    outline: none;
    border-radius: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.2s ease;
  }
  .password-section .btns .btn-submit {
    background-color: #4d4d4d;
  }
  .password-section .btns .btn-submit:hover {
    background-color: #131313;
  }
  .password-section .btns .btn-cancel {
    background-color: #b18dff;
  }
  .password-section .btns .btn-cancel:hover {
    background-color: #bd9eff;
  }
  .infos-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .infos-section .input-title {
    font-weight: 500;
    font-size: 1.3rem;
  }
  .infos-section .input-box {
    position: relative;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    border-radius: 1rem;
    font-size: 1.1rem;
    margin: 10px 0;
    background-color: #ffffff;
  }
  .infos-section .input-box p {
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .infos-section .input-box i {
    font-size: 22px;
  }
  .infos-section .input-box .fa-user {
    font-size: 20px;
  }
  .terms-section {
    display: none;
    width: 100%;
    flex-direction: column;
    position: relative;
  }
  .terms-section .terms {
    font-size: 1rem;
    overflow-y: auto;
  }
  .data-section {
    width: 100%;
    display: none;
    flex-direction: column;
    position: relative;
  }
  .data-section .reviews-title {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 5px;
  }
  .data-section .text {
    font-size: 1rem;
  }
  .data-section .btn-submit {
    margin: 1rem 0;
    padding: 0.6rem 1rem;
    background-color: #4d4d4d;
    color: #ffffff;
    border: none;
    outline: none;
    border-radius: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.2s ease;
  }
  .data-section .btn-submit:hover {
    background-color: #ee5151;
    color: #ffffff;
  }
}
@media (min-width: 20.625em) and (max-width: 47.99em) {
  .settings-section {
    width: 90vw;
    margin-top: 6.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-left: 5vw;
  }
  .password-section {
    width: 60vw;
    display: none;
    flex-direction: column;
    position: fixed;
    left: 50%;
    margin-top: 15rem;
    transform: translate(-50%);
    border-radius: 1.3rem;
    padding: 1.3rem;
    background-color: #e4e4e4;
    z-index: 1000;
  }
  .password-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .password-section h3 {
    font-weight: 200;
    margin-bottom: 0.6rem;
  }
  .password-section .btns {
    display: flex;
    gap: 1.3rem;
  }
  .password-section .btns .btn-datas {
    width: 6.2rem;
    margin-top: 1rem;
    padding: 0.6rem 1rem;
    color: #ffffff;
    border: none;
    outline: none;
    border-radius: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.2s ease;
  }
  .password-section .btns .btn-submit {
    background-color: #4d4d4d;
  }
  .password-section .btns .btn-submit:hover {
    background-color: #131313;
  }
  .password-section .btns .btn-cancel {
    background-color: #b18dff;
  }
  .password-section .btns .btn-cancel:hover {
    background-color: #bd9eff;
  }
  .infos-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .infos-section .input-title {
    font-weight: 500;
    font-size: 1.3rem;
  }
  .infos-section .input-box {
    position: relative;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    border-radius: 1rem;
    font-size: 1.1rem;
    margin: 10px 0;
    background-color: #ffffff;
  }
  .infos-section .input-box p {
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .infos-section .input-box i {
    font-size: 22px;
  }
  .infos-section .input-box .fa-user {
    font-size: 20px;
  }
  .terms-section {
    display: none;
    width: 100%;
    flex-direction: column;
    position: relative;
  }
  .terms-section .terms {
    text-align: justify;
    font-size: 0.9rem;
    overflow-y: auto;
  }
  .data-section {
    width: 100%;
    display: none;
    flex-direction: column;
    position: relative;
  }
  .data-section .reviews-title {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 5px;
  }
  .data-section .text {
    font-size: 1rem;
  }
  .data-section .btn-submit {
    margin: 1rem 0;
    padding: 0.6rem 1rem;
    background-color: #4d4d4d;
    color: #ffffff;
    border: none;
    outline: none;
    border-radius: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.2s ease;
  }
  .data-section .btn-submit:hover {
    background-color: #ee5151;
    color: #ffffff;
  }
}
@media (min-width: 81.25em) {
  .page-your-albums {
    width: 81vw;
    margin-top: 8.5rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
  }
  .page-your-albums .text-empty {
    margin-top: 90px;
    height: 25vw;
    width: 81vw;
    display: flex;
    justify-content: center;
    font-size: 30px;
  }
  .page-your-albums .albums-btn {
    margin-top: 1rem;
  }
}
@media (min-width: 64em) and (max-width: 81.24em) {
  .page-your-albums {
    margin-top: 8rem;
    width: 85vw;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
  }
  .page-your-albums .text-empty {
    margin-top: 90px;
    height: 25vw;
    width: 85vw;
    display: flex;
    justify-content: center;
    font-size: 30px;
  }
  .page-your-albums .albums-btn {
    margin-top: 1rem;
  }
}
@media (min-width: 48em) and (max-width: 63.99em) {
  .page-your-albums {
    width: 85vw;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    margin-top: 7rem;
    display: flex;
    flex-direction: column;
  }
  .page-your-albums .text-empty {
    margin-top: 90px;
    height: 25vw;
    width: 85vw;
    display: flex;
    justify-content: center;
    font-size: 30px;
  }
  .page-your-albums .albums-btn {
    margin-top: 1rem;
  }
}
@media (min-width: 20.625em) and (max-width: 47.99em) {
  .page-your-albums {
    width: 90vw;
    position: relative;
    margin-left: 5vw;
    margin-top: 6.5rem;
    display: flex;
    flex-direction: column;
  }
  .page-your-albums .text-empty {
    margin-top: 90px;
    height: 25vw;
    width: 85vw;
    display: flex;
    justify-content: center;
    font-size: 30px;
  }
  .page-your-albums .albums-btn {
    margin-top: 1rem;
  }
}
@media (min-width: 20.625em) and (max-width: 47.99em) {
  .follows-page {
    margin-top: 6.5rem;
    width: 90vw;
    display: flex;
    margin-left: 5vw;
    flex-direction: column;
    align-items: center;
  }
  .follows-page .empty {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 300px;
    width: 90vw;
    font-size: 30px;
  }
}
@media (min-width: 48em) and (max-width: 63.99em) {
  .follows-page {
    width: 85vw;
    margin-top: 7rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .follows-page .empty {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 300px;
    width: 85vw;
    font-size: 35px;
  }
}
@media (min-width: 64em) and (max-width: 81.24em) {
  .follows-page {
    width: 85vw;
    margin-top: 8rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
  }
  .follows-page .empty {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 300px;
    width: 85vw;
    font-size: 35px;
  }
}
@media (min-width: 81.25em) {
  .follows-page {
    width: 81vw;
    margin-top: 8.5rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
  }
  .follows-page .empty {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 300px;
    width: 81vw;
    font-size: 35px;
  }
}
@media (min-width: 20.625em) and (max-width: 47.99em) {
  .open-spotify {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
    font-weight: 500;
  }
  .open-spotify .button-spotify {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ececec;
    border-radius: 1.2rem;
    color: #131313;
    padding: 0.7rem;
    height: 3.5rem;
    gap: 0.4rem;
    transition: 0.15s;
  }
  .open-spotify .button-spotify:hover {
    box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5);
  }
  .open-spotify .button-spotify:active {
    transform: scale(0.98);
  }
  .open-spotify .spotify-logo {
    height: 100%;
  }
}
@media (min-width: 48em) and (max-width: 63.99em) {
  .open-spotify {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.6px;
    font-size: 1.2rem;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
  }
  .open-spotify .button-spotify {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ececec;
    border-radius: 1.2rem;
    color: #131313;
    padding: 0.8rem;
    height: 3.5rem;
    gap: 0.6rem;
    transition: 0.15s;
  }
  .open-spotify .button-spotify:hover {
    box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5);
  }
  .open-spotify .button-spotify:active {
    transform: scale(0.98);
  }
  .open-spotify .spotify-logo {
    height: 100%;
  }
}
@media (min-width: 64em) and (max-width: 81.24em) {
  .open-spotify {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.7px;
    font-size: 1.4rem;
    font-weight: 500;
  }
  .open-spotify .button-spotify {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ececec;
    border-radius: 1.4rem;
    color: #131313;
    padding: 0.9rem;
    height: 4.3rem;
    gap: 0.6rem;
    transition: 0.15s;
  }
  .open-spotify .button-spotify:hover {
    box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5);
  }
  .open-spotify .button-spotify:active {
    transform: scale(0.98);
  }
  .open-spotify .spotify-logo {
    height: 100%;
  }
}
@media (min-width: 81.25em) {
  .open-spotify {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    letter-spacing: -0.8px;
    font-weight: 500;
  }
  .open-spotify .button-spotify {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ececec;
    border-radius: 1.5rem;
    color: #131313;
    padding: 1rem;
    height: 4.5rem;
    gap: 0.6rem;
    transition: 0.15s;
  }
  .open-spotify .button-spotify:hover {
    box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5);
  }
  .open-spotify .button-spotify:active {
    transform: scale(0.98);
  }
  .open-spotify .spotify-logo {
    height: 100%;
  }
}
@media (min-width: 81.25em) {
  .error-page {
    background: url(/images/background_error.png) no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    z-index: -10;
  }
  .error-page .top {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    top: 2rem;
    font-weight: 800;
    color: #ffffff;
    font-size: 2.5rem;
  }
  .error-page .top .wavee {
    width: 3.5rem;
    height: 3.5rem;
  }
  .error-page .error-section {
    position: absolute;
    top: 12rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    color: #ffffff;
  }
  .error-page .error-section .title {
    font-size: 3.5rem;
    letter-spacing: -0.15rem;
  }
  .error-page .error-section .little-title {
    font-size: 1.6rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: -0.05rem;
  }
  .error-page .error-section .btn-return {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #b18dff;
    width: 20rem;
    padding: 1rem 1rem;
    border-radius: 3rem;
    transition: 0.1s ease;
    font-size: 1.5rem;
    font-weight: 600;
  }
  .error-page .error-section .btn-return:hover {
    background-color: #bd9eff;
  }
  .error-page .error-section .btn-return .logo_img {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
  }
}
@media (min-width: 64em) and (max-width: 81.24em) {
  .error-page {
    background: url(/images/background_error.png) no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    z-index: -10;
  }
  .error-page .top {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    top: 2rem;
    font-weight: 800;
    color: #ffffff;
    font-size: 2.5rem;
  }
  .error-page .top .wavee {
    width: 3.5rem;
    height: 3.5rem;
  }
  .error-page .error-section {
    position: absolute;
    top: 12rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    color: #ffffff;
  }
  .error-page .error-section .title {
    font-size: 3.2rem;
    letter-spacing: -0.15rem;
  }
  .error-page .error-section .little-title {
    font-size: 1.6rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: -0.05rem;
  }
  .error-page .error-section .btn-return {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #b18dff;
    width: 17rem;
    padding: 0.8rem;
    border-radius: 3rem;
    transition: 0.1s ease;
    font-size: 1.5rem;
    font-weight: 600;
  }
  .error-page .error-section .btn-return:hover {
    background-color: #bd9eff;
  }
  .error-page .error-section .btn-return .logo_img {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
  }
}
@media (min-width: 48em) and (max-width: 63.99em) {
  .error-page {
    background: url(/images/background_error.png) no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    z-index: -10;
  }
  .error-page .top {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    top: 2rem;
    font-weight: 800;
    color: #ffffff;
    font-size: 2.5rem;
  }
  .error-page .top .wavee {
    width: 3.5rem;
    height: 3.5rem;
  }
  .error-page .error-section {
    position: absolute;
    top: 12rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    color: #ffffff;
  }
  .error-page .error-section .title {
    font-size: 2.6rem;
    letter-spacing: -0.15rem;
  }
  .error-page .error-section .little-title {
    font-size: 1.6rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: -0.05rem;
  }
  .error-page .error-section .btn-return {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #b18dff;
    width: 16rem;
    padding: 0.8rem;
    border-radius: 3rem;
    transition: 0.1s ease;
    font-size: 1.5rem;
    font-weight: 600;
  }
  .error-page .error-section .btn-return:hover {
    background-color: #bd9eff;
  }
  .error-page .error-section .btn-return .logo_img {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
  }
}
@media (min-width: 20.625em) and (max-width: 47.99em) {
  .error-page {
    background: url(/images/background_error.png) no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    z-index: -10;
  }
  .error-page .top {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    top: 2rem;
    font-weight: 800;
    color: #ffffff;
    font-size: 2.2rem;
  }
  .error-page .top .wavee {
    width: 3rem;
    height: 3rem;
  }
  .error-page .error-section {
    padding: 1rem;
    position: absolute;
    top: 12rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    color: #ffffff;
  }
  .error-page .error-section .title {
    font-size: 1.6rem;
    letter-spacing: -0.05rem;
  }
  .error-page .error-section .little-title {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: -0.05rem;
  }
  .error-page .error-section .btn-return {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #b18dff;
    width: 12rem;
    padding: 0.6rem;
    border-radius: 3rem;
    transition: 0.1s ease;
    font-size: 1.2rem;
    font-weight: 600;
  }
  .error-page .error-section .btn-return:hover {
    background-color: #bd9eff;
  }
  .error-page .error-section .btn-return .logo_img {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
  }
}
@media (min-width: 81.25em) {
  .privacy-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    position: relative;
    margin-top: 8rem;
  }
  .privacy-content .privacy-description {
    width: 81vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .privacy-content .footer-privacy {
    width: 100%;
  }
}
@media (min-width: 64em) and (max-width: 81.24em) {
  .privacy-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    position: relative;
    margin-top: 7rem;
  }
  .privacy-content .privacy-description {
    width: 85vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .privacy-content .footer-privacy {
    width: 100%;
  }
}
@media (min-width: 48em) and (max-width: 63.99em) {
  .privacy-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    position: relative;
    margin-top: 7rem;
  }
  .privacy-content .privacy-description {
    width: 85vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .privacy-content .footer-privacy {
    width: 100%;
  }
}
@media (min-width: 20.625em) and (max-width: 47.99em) {
  .privacy-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    position: relative;
    margin-top: 5rem;
  }
  .privacy-content .privacy-description {
    width: 90vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .privacy-content .footer-privacy {
    width: 100%;
  }
}

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