#shoutbox {
    margin: 0 0 50px 0;
    border-radius: 10px;
    background: var(--secondary-color);
    box-shadow: 0px 10px 10px -4px rgb(0 0 0 / 8%)
}

#shoutbox .head {
    padding: 8px
}

#shoutbox.front .head {
    cursor: pointer;
    padding: 20px 15px;
    display: flex;
    min-height: 40px;
    border-radius: 10px;
    margin-bottom: -2px;
    position: relative;
    align-items: center
}

#shoutbox .head .right {
    float: right;
    margin: 0 -8px 0 0;
    font-size: 13px
}

#shoutbox .head .right a {
    padding: 8px
}

#shoutbox.collapsed .head {
    opacity: 0.6
}

#shoutbox.collapsed .body {
    display: none
}

#shoutbox a.shoutboxName {
    color: var(--color2);
    display: block;
    font-size: 22px;
    letter-spacing: -1px;
    font-weight: 600
}

#shoutbox .panel {
    padding: 0;
    background: var(--third-color);
    border-radius: 0 0 10px 10px;
    height: 56px
}

#shoutbox .panel form {
    display: flex
}

#shoutbox input.text {
    padding: 20px 8px;
    width: 100%;
    box-sizing: border-box;
    border: none;
    font-size: 13px;
    color: var(--link-color);
    background: var(--third-color);
    border-radius: 0 0 0 10px;
    transition: .2s
}

#shoutbox input.text::placeholder {
    color: #68778f;
    font-family: 'Inter',sans-serif
}

#shoutbox input.text:hover {
    filter: brightness(var(--filter-bright))
}

#shoutbox input.text:focus::placeholder {
    color: transparent
}

#shoutbox input.text:focus {
    filter: brightness(var(--filter-bright));
    border: none;
    outline: none
}

#shoutbox .minposts,#shoutbox .blocked {
    padding: 6px;
    font-size: 11px
}

#shoutbox .panel.minposts {
    color: #727250;
    background-color: #FFFED8
}

#shoutbox .panel.blocked {
    color: #543A3A;
    background-color: #FCEFEF
}

#shoutbox .panel p {
    margin: 0
}

#shoutbox .window {
    padding: 1px 10px 0;
    overflow-y: scroll
}

#shoutbox .data {
    display: table;
    width: 100%;
    font-size: 13px;
    font-weight: 500
}

#shoutbox.front .data {
    border-top: none
}

#shoutbox .entry {
    display: block !important;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--six-color);
    border-radius: 10px;
    background-color: var(--third-color);
    margin: 10px 0
}

#shoutbox .entry:last-child > div {
    border-bottom: none
}

#shoutbox .entry:nth-child(even) {
}

#shoutbox .avatar {
}

#shoutbox .avatar img {
    float: left;
    display: flex;
    margin-left: 8px;
    vertical-align: middle;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    cursor: pointer;
    margin-top: 2px;
    align-items: center;
    border: 3px solid var(--secondary-color);
    object-fit: cover;
}

#shoutbox .user {
    display: inline;
    padding: 3px;
    white-space: nowrap;
    font-size: 13px;
    flex-direction: column
}

#shoutbox .text {
    display: block;
    padding-left: 50px
}

#shoutbox .info {
    margin: 8px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 10px
}

#shoutbox .info a {
    color: inherit
}

#shoutbox .mod {
    padding: 6px 8px;
    font-size: 9px;
    font-weight: bold;
    text-decoration: none
}

#shoutbox .mod:nth-of-type(2) {
    margin-right: 5px
}

#shoutbox .ip {
    margin-right: 10px
}

#shoutbox .panel button[type="submit"] {
    background: var(--third-color);
    border: none;
    margin: 10px;
    border-radius: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dc-color);
    font-weight: 900;
    font-size: 18px;
    transition: .2s;
    filter: brightness(1)
}

#shoutbox .panel button[type="submit"]:hover {
    filter: brightness(var(--filter-bright))
}

		