.tk-tabs {
    display: flex;
    width: 100%;
    gap:2%;
    padding: 0 2px 20px 2px;
}
.tk-tab {
    width:24%;
    box-shadow: 0 1px 3px 1px RGBA(0,0,0,0.15);
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-align: center;
    border-radius: 5px;
    padding: 14px 0;
    border: 1px solid transparent;
}
.tk-tab:hover {
    border: 1px solid #f6bf41;
    box-shadow: 0 1px 3px 1px #f6bf41;
    cursor: pointer;
}
.tk-tab.active {
    background: #f6bf41;
}

.tab-content {
    display: none;
    padding: 10px 0;
}
.tab-content.active{
    display: block;
}
.tab-content .wp-block-group {
    align-self: normal;
}
.tk-tabs-container .tab-content a {
    color: #000 !important;
}
.tk-contakt .is-layout-flex {
    gap:20px;
}
.tk-contakt .is-layout-flex .tk-contakt-block {
    width: 50%;
    padding-left: 40px;

}
.tk-contakt .is-layout-flex .tk-contakt-block p {
    font-size: 20px;
    font-weight: 500;
    line-height: 143%;
    letter-spacing: 0;
}
.tk-docs .wp-block-group.is-vertical.is-layout-flex {
    align-items: start;
}

.tk-docs .wp-block-file a {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0.05em;
}
.tk-docs .wp-block-file:hover a {
    color: #722b14 !important;
    /* border-bottom: 1px solid #722b14; */
    text-decoration: underline;
}
.tk-docs .wp-block-file:before{
    width: 15px;
    height: 15px;
    /* content: '\2734'; */
    color: #707070;
    font-size: 20px;
    margin-right: 5px;
    content: '';
    display: inline-block;
    background-image: url('../images/star.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.tk-docs .wp-block-file:hover:before{
    color: #722b14 !important;
    background-image: url('../images/star2.svg');
}
.tk-docs .wp-block-file .wp-block-file__button{
    display: none;
}

.tk-contakt-block.star {
    background-image: url('../images/star.svg');
    background-repeat: no-repeat;
    background-position: left 25px;
}
.tk-contakt-block.star.star-red {
    background-image: url('../images/star2.svg');
}


@media (max-width: 768px) {
    .tk-tabs {
        display: grid;
        gap: 5%;
        margin: 20px 0;
        height: 100%;
        min-height: 200px;
    }
    .tk-tab {
        width: 80%;
        margin: 0 auto;
        max-width: 400px;
        padding: 5px;
    }
    .tk-contakt .wp-block-group {
        flex-direction: column;
    }
    .tk-tabs-container .tab-content {
        margin: 20px 0 10px 0;
        padding: 0 10px;
    }
    .tk-tabs-container .tab-content a {
        cursor: pointer;
        font-size: 14px !important;
    }

    .tk-contakt-block p {

        font-size: 14px !important;
    }
    .tk-contakt .is-layout-flex .tk-contakt-block {
        width: 100%;
        padding-left: 25px;
    }
}