.header {
    position: fixed;
    width: 100%;
    height: 90px;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
  	z-index: 1000;
  	transform: translateY(-100%);
  	transition: transform 0.3s;
}

#js-scroll-top {
  cursor: pointer;
}

.header.visible {
    transform: translateY(0);
}

.header__container {
    margin: 0 auto;
    height: 100%;
    width: 100%;
    max-width: 1540px;
    padding: 0 16px;
    justify-content: space-between;
}

.header__container .button {
    min-width: 160px;
    height: 50px;
    margin-left: 20px;
}

.header__container .button img {
    height: 24px;
}

.header__container .button-subscribe {
  	border: 3px solid #ff8500;
}

.header__container .button-subscribe span {
  	font-size: 24px;
}

.header .message {
 	background: transparent;
  	font-size: 20px;
}

.header .login__buttons {
  margin-bottom: 0;
}

.header .top-navigation__language {
  margin-right: 20px;
}

@media screen and (max-width: 600px) {
  	.header {
        display: none;
  	}
}

