/* from virtual.css */

/* Filterable button */


.button-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
    margin-bottom: 35px;
    width: 60%;
  }
  
  .btn-gallery {
    padding: 10px 20px;
    margin: 6px;
    font-size: 14px;
    border-radius: 40px;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    border: 0;
    list-style: none;
  }

  .btn-gallery:hover {
    background-color: #e05306;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
  }

  .btn-gallery a:visited,
  .btn-gallery a:link,
  .btn-gallery a:active,
  .btn-gallery a:hover {
    color: #fff;
  }

  .btn-active {
    padding: 10px 20px;
    margin: 6px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 40px;
    border-style: none;
    background-color: #e05306;
    color: #fff;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #e05306;
    cursor: none;
  }
  