@charset "utf-8";
/* CSS Document */

/* # COLLAPSIBLE */

  /* Style the button that is used to open and close the collapsible content */

    .collapsible {
      display: none;
      background-color: #eee;
      background-color:rgba(127, 127, 127, 0.3);
      /*background-color:  rgb(201, 155, 64, 0.3);*/
      border-radius: 10px 10px 10px 10px;
      color: #444;
      color: rgba(211, 211, 211, 0.5);
      color: white;
      cursor: pointer;
      padding-left: 30px;
      padding-right: 30px;
      width: 100%;
      width: auto;
      border: none;
      text-align: left;
      outline: none;
      font-size: 2rem;
      margin: 0px;
      height: 65px;
      box-shadow: 3px 3px 15px 3px #00000050;
      /*border-bottom: solid 1px  darkorange;*/
      font-family: "Menu";
      -webkit-backdrop-filter: blur(10px); /* Add this line first, it fixes blur for Safari*/
      backdrop-filter: blur(10px);  /* This line activates blur*/
      border: solid 1px  darkorange;
      border: solid 1px #C99B40;
      z-index: 9998;
      user-select: none;
    }

  /* Style Icon Normal */

    .collapsible:after {
      font-size: 1.7rem;
      /*content: '\02795';
      font-size: 13px;*/
      float: left;
      margin-left: 5px;
      color: lightgrey;
    }

  /* Style Icon Active */

    .active:after {
      font-size: 1.7rem;
      /*content: '\02796';*/
      color: lightgrey;
        background-color: #333;
    }

  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */

  .active,
    .collapsible:hover {
        /*
      background-color: #ccc;
      background-color:black;
      background-color: #333;
      */
    }

     .active {
        /*
      background-color: #ccc;
      background-color:black;
      background-color: #333;
      */
       background-color: rgb(0, 0, 0, 70%);
    }

  /* Style the collapsible content. Note: hidden by default */

    .content {
      padding: 0px;
      margin: 0px;
      display: none;
      overflow: hidden;
      width: 100%;
      z-index: 9997;
    }

/*@media (max-width: 779px)*/
@media (max-width: 1023px)
{
  /* # COLLAPSIBLE */

    .collapsible {
      display:block;
      position: fixed;
      position:fixed; top:15px;  left: 10px;
      /*border-bottom: solid 1px  lightgray;*/
    }

    #nav-bar-large {
      display: none;
    }

    .content {
      position:fixed; top:70px;  right: 0;;
      position:fixed; top:10px;  left: 0;
      width: auto; 
      margin-right: 5px;
    }

  /* # COLLAPSIBLE */
}