/* keyframes */
@keyframes logo-animation {
  from {
    opacity: 0;
    transform: rotate3d(0.5, 0.5, 1, 1turn) translateY(40px) scale(0);
  }
  to {
    opacity: 1;
    transform: rotate3d(1, 1, 0, 0) translateY(0) scale(1);
  }
}
@keyframes text-animation {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes repaetable-logo-animation {
  10% {
    transform: rotate3d(0.5, 0.5, 1, -1turn) translateY(40px) scale(0);
  }
  20% {
    transform: rotate3d(0.5, 0.5, 1, 1turn) translateY(40px) scale(0);
  }
  0%,
  40%,
  100% {
    transform: rotate3d(1, 1, 0, 0) translateY(0);
  }
}
@keyframes rotate360 {
  to {
    transform: rotate(1turn);
  }
}
@keyframes transition100 {
  to {
    transform: translatex(-50%);
  }
}
@media screen and (max-width: 1150px) {
  .dataside .grid {
    grid-template-columns: repeat(3, calc((100% - 1rem) / 3));
  }
}
@media screen and (max-width: 1000px) {
  body .wrapper {
    display: grid;
    grid-template-columns: 100%;
  }
  body .menu-btn-holder,
  body .sidebar .action-menu {
    display: flex;
  }

  body .wrapper .sidebar {
    transform: translateX(300px);
    position: absolute;
    width: 250px;
    top: 0;
    right: 0;
    height: 100%;
    bottom: 1rem;
    z-index: 15;
    border-left: var(--BW) solid var(--MCL1);
  }
  body .wrapper .sidebar.show {
    transform: translateX(0);
  }
  body .wrapper .dataside {
    border: none;
    border-radius: var(--BR3);
  }
}
@media screen and (max-width: 900px) {
  body table {
    padding: 0 !important;
    min-width: unset!important;
  }
  body table thead {
    display: none;
  }
  body table tbody tr {
    display: flex;
    border-radius: var(--BR2);
    background: var(--MCL1)!important;
    flex-direction: column;
    margin:1rem;
    padding:.5rem;

  }
  body table tbody tr td {
    display: flex;
    border-radius: var(--BR1)!important;
    justify-content: space-between;
    align-items: center;
    margin:.1rem 0;
    padding: .7rem .5rem !important;
    padding-left:1rem!important;
  }
  body table tbody tr td .center-inside-elements a{
    background: #fff!important;
  }
  body table tbody tr td > * {
    text-align: left;
  }
  body table tbody tr td::before {
    content: attr(title);
    font-weight: 600;
    padding: 0.2rem 1rem;
    margin-left: 1rem;
    border-radius: var(--BR1);
    background: #fff;
  }
  body table tbody tr td:nth-child(2n){
    background: var(--MCL2);
  }
}
@media screen and (max-width: 800px) {
  body .dataside .form-box.division {
    display: grid;
    grid-template-columns: 100%;
  }
  body .dataside .music-player {
    margin: 1rem;
  }
  .dataside .form-box .files {
    display: flex;
    align-items: center;
  }
  body .dataside .form-box .files label.cover {
    max-width: 230px;
  }
  .dataside .grid {
    margin: 1rem;
    grid-template-columns: repeat(2, calc((100% - 0.5rem) / 2));
  }
}
@media screen and (max-width: 750px) {
  body .dataside .two-sides {
    grid-template-columns: 100%;
    display: grid;
    gap: 0;
  }
}
@media screen and (max-width: 600px) {
  body .dataside .status-widgets {
    height: auto;
    padding: 1rem;
    display: grid;
    grid-template-columns: 100%;
  }
  body .dataside footer{
    flex-direction: column;
    white-space: nowrap;
    gap: .5rem;
  }
  .dataside .form-box .files {
    flex-direction: column;
  }
  body .dataside .form-box .files .music label {
    width: calc(100% - 2rem);
    margin: 0.5rem 1rem;
  }
  body .dataside .form-box .files label.cover {
    height: 230px;
    max-width: unset;
    width: calc(100% - 2rem);
    aspect-ratio: unset;
  }
  body .dataside .profile {
    height: unset;
    padding: 1rem;
    display: block;
  }
  body .dataside .inputs .profile label,
  body .dataside .inputs .profile button {
    margin: 0 0.5rem;
    margin-top: 1rem;
  }
  body .dataside .profile .bg {
    height: unset;
    padding: 2rem 1rem;
    flex-direction: column;
    width: auto;
  }
  body .dataside .profile .bg .text h1,
  body .dataside .profile .bg .text span {
    text-align: center;
    display: inline-block;
    width: 100%;
  }
  body .dataside .profile .bg div.actions {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 550px) {
  .dataside .grid {
    grid-template-columns: repeat(1, 100%);
  }
}
@media screen and (max-width: 450px) {
  .dataside .music-player .music-info {
    min-width: 150px;
    width: 100%;
  }
}
@media screen and (min-width: 1350px) {
  body .wrapper .dataside > *:not(header) {
    max-width: 1000px !important;
    margin-left: auto;
    margin-right: auto;
  }
}
