.slovnik-box {
    box-shadow: 4px 4px 4px rgba(0,0,0,.05);
    position: relative;
    padding-bottom: 6rem !important;
}

.letters-search {
    display: flex;
    flex-wrap: nowrap;
}

.letters-search .letter {
    border: 1px solid #D42C65;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D42C65;
    border-radius: 50px;
    transition: 150ms linear all;
    text-transform: uppercase;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 4px;
}

.letters-search .letter:not(:last-child) {
    margin-right: 4px;
}

.letters-search .letter.active, .letters-search .letter:hover {
    background: #D42C65;
    color: #fff;
}

.tags-wrap {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 20px;
}

.items-row {
    display: flex;
    flex-wrap: wrap;
}

.first-spacer {
    width: 68px;
    margin-right: 40px;
}

.first-spacer .tag-pill {
    width: 68px;
}

.first-spacer .letter {
    width: 68px;
}

.tags-wrap .tag-pill {
    border: 1px solid #D42C65;
    padding: 3px 15px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D42C65;
    border-radius: 50px;
    transition: 150ms linear all;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Barlow Condensed';
    margin-bottom: 4px;
}

.tags-wrap .tag-pill.active, .tags-wrap .tag-pill:hover {
    background: #D42C65;
    color: #fff;
}

.tags-wrap .tag-pill:not(:last-child) {
    margin-right: 4px;
}

.slovnik-box .tags-wrap {
    margin-bottom: 10px;
}

.slovnik-box .tag-pill {
    border: 1px solid #009FDE;
    color: #009FDE;
    font-size: 14px;
    padding: 1px 15px;
    height: auto;
    margin-right: 2px;
}

.slovnik-box .tag-pill:hover {
    border: 1px solid #009FDE;
    color: #009FDE;
    background: #fff;
}

.slovnik__title {
    margin-bottom: 10px;
}

.slovnik-searchbox {
    margin-bottom: 20px;
    position: relative;
}

.slovnik-searchbox form input[type="search"] {
    text-align: center;
    padding: .5rem 2rem .5rem 2rem;
}

.slovnik-searchbox button[type="submit"] {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 18px;
}

.slovnik-searchbox button[type="submit"] .searchbox-icon {
    width: 24px;
    height: 24px;
    fill: #0B2E4E;
    transition: 150ms linear all;
}

.slovnik-searchbox button[type="submit"]:hover .searchbox-icon {
    fill: #DF215D;
}

.tags-wrap.single .tag-pill {
    border: 1px solid #009FDE;
    color: #009FDE;
    font-size: 14px;
    padding: 1px 15px;
    height: auto;
    margin-right: 2px;
}

.tags-wrap.single .tag-pill:hover {
    border: 1px solid #009FDE;
    color: #009FDE;
    background: transparent;
}

.slovnik-more {
    text-align: right;
    margin: 0 0 0 auto;
    display: block;
    position: absolute;
    bottom: 3rem;
    right: 3rem;
}

.slovnik-single-navigation a .topic-name {
    color: #DF215D;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.slovnik-single-navigation a .topic-name svg {
    height: 20px;
    fill: #DF215D;
    margin: 0 10px;
}

.slovnik-single-navigation a .fs-14 {
    color: #0B2E4E;
    font-weight: 500;
}

.letter-title {
    text-align: center;
    font-size: 19px;
    font-weight: 700;
    color: #0B2E4E;
    margin-bottom: 20px;
    position: relative;
}

.letter-title::before {
    content: "";
    border-bottom: 1px solid #707070;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 45%;
    left: 15px;
}

.letter-title::after {
    content: "";
    border-bottom: 1px solid #707070;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 45%;
    right: 15px;
}