@media only screen and (max-width: 1024px) {
}

@media only screen and (max-width: 860px) {
  .col-25,
  .col-75 {
    width: 50%;
  }

  .col-30 {
    width: 40%;
  }

  .col-70 {
    width: 60%;
  }

  .col-50 {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .col-30,
  .col-50,
  .col-70 {
    width: 100%;
  }

  /*  */
  .menu {
    position: fixed;
    left: 0;
    bottom: 0;
    background: var(--bg-pri);
    border-top: thin solid var(--bd-pri);
    display: grid;
    align-content: center;
    width: 100%;
    height: 4rem;
    padding: 0 1rem;
  }

  .menu .menu-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    column-gap: 3rem;
    list-style-type: none;
    padding-left: 0;
  }

  .menu .menu-item {
    position: relative;
  }

  .menu .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
  }

  .menu .name {
    font-size: 0.8rem;
    text-transform: capitalize;
    display: block;
    visibility: visible;
  }

  .menu .icon {
    display: block;
    padding: 0.7rem;
  }

  main {
    margin-bottom: 30px;
  }

  .admin {
    .col-30 {
      width: 40%;
    }

    .col-70 {
      width: 60%;
    }
  }
}

@media only screen and (max-width: 640px) {
  :root {
    --ss: 0.5rem;
    --sm: 0.5rem;
  }

  .col {
    width: 30%;
  }

  .col-25,
  .col-30,
  .col-40,
  .col-75 {
    width: 100%;
  }

  .admin {
    .col-30 {
      width: 100%;
    }

    .col-70 {
      width: 100%;
    }
  }

  .order {
    .col-70 {
      order: 1;
      border-bottom: thin solid var(--bd-pri);
    }

    .col-30 {
      order: 2;
    }
  }
}

@media only screen and (max-width: 480px) {
  .col,
  .col-20,
  .col-25,
  .col-30,
  .col-50,
  .col-70 {
    width: 100%;
  }

  /* menu */
  .menu .name {
    text-transform: capitalize;
    display: none;
    visibility: visible;
  }
}
