.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height-desktop);
    padding: 0 40px;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.header__partners img {
    height: 32px;
}

.header__partners img[alt="betcity"] {
    height: 50px;
}

.header__rules {
    font-size: 24px;
    line-height: 30px;
}

.header__rules a {
    color: #fff;
    text-decoration: none;
}

.header__partners-delimiter {
    margin: 0 18px;
    width: 1px;
    min-width: 1px;
    height: 40px;
    background: white;
    opacity: .2;
}

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

    .header__partners {
        width: 100%;
    }

    .header__partners-delimiter {
        height: 23px;
        margin: 0 10px;
    }

    .header__partners img {
        height: 19px;
    }

    .header__partners img[alt="betcity"] {
        height: 26px;
    }

    .header {
        height: var(--header-height-mobile);
        padding: 0 8px;
    }

    .header__rules {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .header {
        padding: 0 16px;
    }

    .header__partners img {
        height: 28px;
    }
}

@media screen and (min-width: 375px) and (max-width: 767px){
    .header__partners img {
        height: 20px;
    }
}

@media screen and (max-width: 374px) {
    .header__partners img {
        height: 19px;
    }
}