@charset "utf-8";

.top-icons {
  position: fixed;
  bottom: 125px;
  left: 16px;
  z-index: 1000;

  display: flex;
}

.top-icon__link {
  display: inline-block;
  width: 90px;
  height: auto;
  aspect-ratio: 90/90;
}

.top-icon__link + .top-icon__link {
  margin-left: 16px;
}

.top-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width:767px) {
  .top-icons {
    bottom: 90px;
    left: 3%;
  }

  .top-icon__link {
    width: 70px;

  } 
  
  .top-icon__link + .top-icon__link {
    margin-left: 5px;
  }
}