.header {
    position: relative;
    padding-top: 37px;
}

.header__content {
    position: relative;
    z-index: 1;

    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1100px;

    color: #ffffff;
}
#checkin_link:hover, #language_switch:hover {
	text-decoration: underline;
}

.menuIcon {
    display: none;

    width: 24px;
    height: 24px;
    margin-right: 16px;

    background: url('../img/hamburger.svg') no-repeat center;
    background-size: contain;

    cursor: pointer;
}

.header__title {
    font-size: 24px;
    font-weight: 500;
}

.header__title a {
    color: #ffffff !important;
}

.buttonsContainer {
    display: flex;
    align-items: center;

    font-size: 14px;
    font-weight: 500;
    line-height: 24px;

    color: rgba(255, 255, 255, 0.7);
}

.buttonsContainer > div {
    display: flex;
    align-items: center;
}

.buttonsContainer__link,
.buttonsContainer__button {
    display: flex;
    align-items: center;

    cursor: pointer;
}

.buttonsContainer__link:not(:first-child) {
    margin-left: 28px;
}

.buttonsContainer__cabinet,
.buttonsContainer__night {
    display: inline-block;
    width: 24px;
    height: 24px;

    background-size: cover;

    cursor: pointer;
}

.buttonsContainer__button {
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);

    font-weight: 400;
}

.buttonsContainer__button:last-child {
    margin-right: 16px;
    padding-right: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.buttonsContainer__night {
    background: url('../img/night.svg') center;
}

.buttonsContainer__cabinet {
    background: url('../img/cabinet.svg') center;
}


@media screen and (max-width: 1100px) {
    .header__content {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 599px) {
    .header {
        padding-top: 12px;
        padding-bottom: 12px;

        background: #2a7ad9;
        z-index: 2;
    }

    .header__title {
        display: flex;
        align-items: center;
    }

    .menuIcon {
        display: flex;
    }

    .buttonsContainer__link,
    .buttonsContainer__button,
    .buttonsContainer__night {
        display: none;
    }
}
