@charset "utf-8";

header {
  background-color: rgb(59, 130, 246);
  display: flex;
  justify-content: space-between;
}
#navigation-buttons {
    display: none;
}

.openbtn.active,
.openbtn:hover,
.openbtn2.active,
.openbtn2:hover
{
  color: #2b87c4;
}
.openbtn
{
  cursor: pointer;
  text-align: center;
  width: 32px;
  height: 32px;
}
.openbtn2
{
    font: 12px/20px Helvetica Neue,Arial,Helvetica,sans-serif;
    cursor: pointer;
    margin-left: 1.5rem;
    margin-top: 0.4rem;
}
.openbtn2 svg
{
    position: relative;
}
.openbtn2 span
{
    margin-left: 4px;
    position: absolute;
    top: 16px;
}

@media (max-width: 768px)
{
    .content
    {
        position: relative;
    }

    #navigation-buttons {
        display: flex;
        background-color: #2d3a42;
        color: #fff;
        padding: 0.7rem 1rem;
        width: 100vw;
    }
    #sideArea.fade-out {
        visibility: visible;
        opacity: 1;
        /*transition: visibility 0s ease 0.5s, opacity 0.5s ease-in-out 0s;*/
        margin: 0;
        padding-left: 0.7rem;
        z-index: 15;
    }
    #sideArea, #plateauInfo {
        position: absolute;
        top: 0;
        visibility: hidden;
        opacity: 0;
    }
    #plateauInfo.fade-out {
        visibility: visible;
        opacity: 1;
        /*transition: visibility 0s ease 0.5s, opacity 0.5s ease-in-out 0s;*/
        margin: 0;
        padding-left: 0.7rem;
        z-index: 15;
    }
}