/* pc fixed */
#fixed{
    position: fixed;
    right: 3%;
    bottom: 5%;
    z-index: 99999;
}

#fixed .top,
#fixed .down{
    width: 50px;
    height: 50px;
    background-color: #004c84;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#fixed .down{
  margin-top: 5px;
}

#fixed .top i,
#fixed .down i{
    color: #fff;
    font-size: 50px;
}

















/* mobile */
@media screen and (max-width: 767px){

  #fixed{
    position: fixed;
    right: 1%;
    bottom: 10%;
    z-index: 99999;
  }

  #fixed .top,
  #fixed .down{
    width: 35px;
    height: 35px;
    right: 5%;
    bottom: 5%;
  }

  #fixed .down{
    margin-top: 5px;
  }

  #fixed .top i,
  #fixed .down i{
      color: #fff;
      font-size: 30px;
  }

}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

  #fixed .top,
  #fixed .down{
    width: 35px;
    height: 35px;
    right: 5%;
    bottom: 5%;
  }

  #fixed .down{
    margin-top: 5px;
  }

  #fixed .top i,
  #fixed .down i{
      color: #fff;
      font-size: 30px;
  }

}
