/*------------------header-------------------*/
header {
  height: 47px;
  width: 100%;
  position: fixed;
  top: 0;
  color: #fff;
  background: #000;
  font-size: 16px;
  z-index: 50;
	cursor: default;
  box-sizing: border-box;
  line-height: 47px;
}
header * {
  box-sizing: border-box;
}

header .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.auth__link {
  text-decoration: none;
  color: #fff;
  padding: 0 20px;
  cursor: pointer;
  display: inline-block;
}
.auth__link:hover {
  text-decoration: underline;
}
.auth__link--accent {
  color: #ff0000;
  text-transform: uppercase;
}

/* header mobile */

@media screen and (max-width: 1220px) {
  header {
    position: static;
    height: auto;
  }
  header .content {
    padding: 0;
  }
}

@media screen and (max-width: 700px) {
  header {
    font-size: 14px;
    line-height: 16px;
    padding: 10px 5%;
  }
  .header__left {
    display: none;
  }
  .header__right {
    white-space: nowrap;
    width: 100%;
    text-align: right;
  }
  .auth__link {
    padding: 0 0 0 10px;
  }
}
@media screen and (max-width: 400px) {
  .auth__link {
    display: block;
    margin: 15px 0 0;
    padding: 0;
  }
  .header__right {
    text-align: center;
  }
}
