.header_table {
position: relative;
top: 0;
z-index: 1;
width: 100%;
height: 100%;
padding: 22px;
display: flex;
justify-content: space-between;
align-items: center;
}
.header-item {
display: flex;
flex-direction: column;
justify-content: space-between;
width: 320px;
gap: 5px;
}
.persons_wrap {
background: var(--black);
border: 1px solid var(--dark-color);
padding: 10px 25px;
border-radius: 26px;
gap: 5px;
display: flex;
flex-wrap: wrap;
}
.persons_title {
width: 100%;
text-align: center;
text-transform: uppercase;
letter-spacing: .1em
}
.persons_wrap img {
width: 62px;
height: 40px;
object-fit: cover;
filter: grayscale(100%)
}
.bestpost {
background: var(--black);
border: 1px solid var(--dark-color);
padding: 20px 25px 20px;
border-radius: 26px;
width: 320px;
box-sizing: border-box;
display: flex;
flex-direction: column;
gap: 5px;
height: calc(100% + 5px)
}
.bestpost-text {
height: 100px;
overflow-y: auto;
padding-right: 10px;
font-size: 11px;
}
.bestpost-sub {
text-align: right;
display: block;
margin-top: 5px
}
.bestpost-author {
color: var(--accent) !important;
font-size: 12px;
}
.bestpost-episode {
font-size: 12px;
font-weight: 400
}
.header-item.mid-head {
align-self: flex-end;
padding: 0 20px 20px;
display: flex;
flex-direction: row;
justify-content: center;
gap: 5px;
flex: 1;
box-sizing: border-box;
}
.mid-head a {
background: var(--black);
padding: 3px 10px 2px;
font-size: 8px;
font-weight: 400;
text-transform: uppercase;
color: var(--white) !important;
border-radius: 15px;
transition: all .3s linear 0s !important;
}
.mid-head a:hover {
background: var(--links)
}
#guestbook {
background: var(--html);
border-radius: 8px;
width: auto;
margin: auto;
box-sizing: border-box;
display: flex;
align-items: center;
flex-direction: column;
gap: 20px;
color: var(--text);
}
.guestbook_wrap {
display: flex;
justify-content: space-between;
flex: 1;
gap: 20px;
width: 100%;
}
.guest-item {
background: var(--pun);
padding: 10px 20px;
border-radius: 8px;
flex: 1
}
.guest-item.guest-logo {
display: flex;
justify-content: center;
align-items: center;
padding: 0;
background: transparent;
}
.guest-logo-text {
background: var(--html);
padding: 8px 25px;
border-radius: 8px;
display: flex;
gap: 5px;
flex-direction: column;
text-transform: uppercase;
line-height: 100%;
position: relative;
}
.guest-logo-text span {
font-size: 13px;
font-weight: 550;
}
.guest-logo-text em {
font-style: normal !important;
color: var(--links)
}
.guest-img {
position: absolute;
width: 134px;
height: 134px;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
.guest-img img {
height: 134px;
}
.guest-item-list {
padding: 0 !important;
margin: 0 !important;
list-style: none !important;
display: flex;
gap: 5px;
flex-direction: column;
}
.guest-item-list li a {
font-weight: 700
}
.guest-item-title {
color: var(--text);
text-transform: uppercase;
font-weight: 700;
font-size: 9px
}
.guest-rules .guest-item-list {
list-style-type: disc !important;
list-style-position: inside !important;
}
.guest-faces .guest-item-list {
height: 135px;
overflow-y: auto;
}