.hlavny-header {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    height: fit-content;

    margin-top: 50px;
}

.header__logo {
    display: block;
    margin-left: 13vw;
    
    transition: 500ms ease-in-out;
}
.header__logo > img {
    width: 122px;
}

.header__logo:hover {
    filter: drop-shadow(0px 0px 1px #000);
}

.header__odkazy {
    display: block;
    margin-right: 10vw;

    list-style: none;
}
.header__odkazy > li {
    display: inline-block;
    width: fit-content;
    height: fit-content;

    vertical-align: middle;
    margin: 0 20px;
}

.header-odkaz {
    display: inline-block;

    width: fit-content;
    height: fit-content;

    font-size: 1.1rem;
    font-weight: 400;
    text-decoration: none;
    color: rgb(30, 30, 30);

    transition: 300ms ease-out;
}

.header__google-play {
    vertical-align: middle;
    width: 153px;
    height: 45px;
    margin-left: 3vw;

    transition: 500ms ease-in-out;
}

.header__google-play:hover {
    filter: drop-shadow(0px 0px 5px #000);
}
.header-odkaz:hover {
    color: rgb(119, 119, 119);
}

.vybrane {
    color: rgb(86, 86, 86);
    text-decoration: underline;
}

.vybrane:hover {
    cursor: pointer;
}

.zakazany:hover {
    cursor: not-allowed;
    color: rgb(210, 67, 67);
}

.zakazany:active {
    color: rgb(185, 0, 0);
}