/*----- MEDIA QUERIES -----*/
@media screen and (max-width: 1200px) {
  .info-manage {
    grid-template: 1fr / 1fr;
    gap: 30px;
  }

  .category {
    justify-self: start;
  }
}

@media screen and (max-width: 768px) {
  .overlay {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    transition: left .3s;
  }

  .overlay_open { /* JS */
    left: 0;
  }

  /*----- BURGER BUTTON -----*/
  .hamburguesa {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3;
    padding: 10px 12.5px;
    border-radius: 50%;
    cursor: pointer;
    background: var(--light-green-color);
    box-shadow: 0px 0px 5px var(--green-color);
  }

  .icono_hamburguesa {
    position: relative;
    width: 20px;
    height: 3px;
    border-radius: 1px;
    margin: 4px 0;
    background: var(--white-color);
    transition: all .1s;
  }

  .cambio .icono_hamburguesa:nth-of-type(1) {
    transform: rotate(45deg);
    top: 7.5px;
  }

  .cambio .icono_hamburguesa:nth-of-type(2) {
    opacity: 0;
  }

  .cambio .icono_hamburguesa:nth-of-type(3) {
    transform: rotate(-45deg);
    top: -6.5px;
  }

  /*----- GENERAL -----*/
  .grid-container {
    position: relative;
    grid-template-columns: 1fr;
  }

  /*----- SIDEBAR -----*/
  .main_sidebar {
    width: 280px;
    position: fixed;
    overflow: auto;
    z-index: 2;
    left: -100%;
    height: 100%;
    transition: left .3s;
  }

  .friends_list {
    padding-bottom: 30px;
  }

  .sidebar_open { /* JS */
    left: 0;
  }

  /*----- MAIN SECTION -----*/
  .youtube { /*----- PLAYER -----*/
    height: 300px;
  }

  .community { /*----- COMMUNITY -----*/
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .comment {
    width: 100%;
  }

  .suggestions {
    grid-row: 1;
  }

  .suggestion_container {
    display: flex;
    overflow: auto;
  }

  .suggestion {
    margin-bottom: 0;
  }

  .suggestion-link {
    width: 300px;
    margin-right: 30px;
  }
}

@media screen and (max-width: 425px) {
  /*----- MAIN SECTION -----*/
  .youtube { /*----- PLAYER -----*/
    height: 200px;
  }

  .info-manage {
    gap: 30px;
  }

  .info-video-name {
    font-size: var(--large-size);
  }

  .info-video-views, .manage-link, .add {
    font-size: var(--medium-size);
  }

  .manage-link {
    margin-left: 15px;
  }

  .category_list {
    font-size: var(--small-size);
    grid-template: 1fr / repeat(4, 70px);
    column-gap: 5px;
  }

  .suggestion-link { /*----- COMMUNITY -----*/
    width: 280px;
    margin-right: 20px;
  }

  .suggestion:last-child .suggestion-link {
    margin-right: 0;
  }
}