/* Header
--------------------*/
@media screen {
  #header {
    width: 100%;
    padding-top: 1rem;
    min-height: 40px;
    z-index: 2;
    background-position: bottom center;
    background-color: var(--theme-blue);
  }

  .headerSpacer {
    display: none;
  }

  .fixedHeader #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 1px 3px rgb(0 0 0 / 11%);
    animation: showHeader 400ms both;
  }

  @keyframes showHeader {
    0%{          
        opacity: 0.5;
        transform: translateY(-100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}
  
  .fixedHeader .headerSpacer {
    display: block;
  }

  #header .inside_art {
    display: flex;
    align-items: center;
  }

  .logo{
    position: relative;
    margin-right: auto;
  }

  .logo figure{
    margin-bottom: 0;
    width: 200px;
  }
}

/* 480px */
@media only screen and (min-width: 480px) {

}

/* min-width:768px */
@media only screen and (min-width: 768px) {

  #header .inside .inside_art {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

}

/* min-width:992px */
@media only screen and (min-width: 992px) {
  #header {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

}

/* min-width:1100 */
@media only screen and (min-width: 1100px) {

}

/* min-width:1300 */
@media only screen and (min-width: 1300px) {

}

/* Media ends
--------------------*/