
*, ::after, ::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

div, a {
    position: relative
}

body {
    background-color: black;
    color: white;
    font-family: Arial;
    overflow: hidden;
    -ms-overflow-style: none; /* Edge, Internet Explorer */
    scrollbar-width: none; /* Firefox */
    overflow-y: scroll;
    padding: 0px 0px 0px 00px;
    background-image: url(../../img/pp-no-black-30b.png?x=3);
    background-repeat: repeat;
    background-size: 32px 32px;
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

a, a:active, a:visited, a:focus, a:hover {
    color: #e9ebeb;
    text-decoration: none;
    -webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

a:hover {
    color: #88e2f3;
}

button {
    -webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.container {
    max-width: 600px;
    margin: 0 auto 80vh auto;
    background-color: #0b0e10e8;
    padding: 10px 10px 0px 10px;
}

.posts, .new-post-form {
    display: block;
    width: 100%;
    margin: 0px;
    height: auto;
}


.new-post-form {
    display: none;
    margin-top: 10px;
}

.new-post-form > form {
    display: block;
    width: 100%;
    margin-bottom: 30px;

}

.posts {
    margin-bottom: 20px;
}


.posts > a {
    display: block;
    width: 100%;
    background-color: #172024;
    color: #858585;
    font-size: 14px;

    white-space: nowrap;
    padding: 8px 6px 8px 6px;
    overflow: hidden;
    margin-top: 4px;
    overflow: hidden!important;
    text-overflow: ellipsis!important;
}

.posts > a::before {
    content: "";
    background-color: #293d46;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 6px;
    height: 100%;
}

.posts > a.active::before {
    background-color: #e9ebeb;
}


.posts > a:first-child {
    margin-top: 10px;
}

.posts > a:hover {
    background-color: #293d46;
}

.posts > a.active {
    background-color: #000c11;
}


.posts > a .score {
    display: inline-block;
    color: #858585;
    font-size: 12px;
    width: 20px;
    text-align: right;
    display: none;
}

.posts > a:hover .score, .posts > a.active .score {
    color: #eaeaea;
}


.posts > a .text {
    color: #e9ebeb;
    font-size: 12px;
    margin-left: 0px;
    padding-left: 8px;
    padding-right: 8px;
    top: 1px;

}

.posts > a:hover .text {
    color: #ffffff;
}


.posts > a .description {
    color: #858585;
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: auto;
    overflow: hidden;
    position: relative;
    display: none;
}

.posts > a:hover .description {
    color: #bebebe;
    font-size: 12px;
}

.posts > a.active .description {
    opacity: 0;
}

.post.active {
    overflow: auto;
    white-space: normal;
    text-overflow: unset;
    word-break: break-all;;
}


input, textarea, button {
    display: block;
    background-color: #192023;
    font-size: 12px;
    color: #b4babb;
    padding: 10px;
    border-bottom: 3px solid #293d46;
    width: 100%;
    color: #e7f3f3;
    border-radius: 0px;
}


input:focus, textarea:focus {
    border-bottom: 3px solid #365563;
}

.break {
    display: block;
    height: 10px;
}

button {
    cursor: pointer;
    background-color: #293d46;
    border-bottom: none;
    color: white;
    font-weight: bold;
}

button:hover {
    background-color: #365563;
}

.input-title {
    font-weight: bold
}

.content {
    display: none;
    background-color: #000c11;
    font-size: 12px;
    padding: 20px;
    text-align: left;
    padding-top: 0px;
}

.profile {
    border: 2px solid #293d46;
    display: inline-block;
    vertical-align: top;
    width: 68px;
    height: 68px;
    background-color: white;
}

@media (max-width: 400px) {

    .profile {
        width: 40px;
        height: 40px;
    }
}

.profile img {
    width: 100%;
    image-rendering: optimizeSpeed;
    -ms-interpolation-mode: nearest-neighbor;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -webkit-crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    outline: 1px solid transparent;
}


.username {
    display: inline-block;
    vertical-align: top;
    padding-top: 2px;
    color: #fff;
    font-weight: bold;
    text-transform: none;
}

.comment {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 68px);
}

.user {
    display: block;
    padding: 0px 8px 5px 8px;
}
.user.banned .username {
    color: red!important;
    text-decoration: line-through!important;
}

.user img {
    display: inline-block;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.comment > .text, .comment > .quote {
    padding: 0px 8px 8px 8px;
    color: #b4babb;
    text-transform: none;
    font-weight: normal;
    word-break: keep-all;
    word-wrap: break-word;
    white-space: pre;
    white-space: pre-line;
}

.comment > .quote {
    display: none;
    background-color: #1d2224;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border:1px solid #4a5358;
    margin: 0px 8px 8px 8px;
    padding: 6px 6px;
    color: #708087;
}

.comment > .quote .q_user {
    display: block;
    font-weight: bold;
    padding-bottom: 5px;
    color: #899aa1;
}

.comment > .award {
    display: none;
    padding: 0px 8px 8px 8px;
    color: #ffd118;
    font-size: 11px;
    text-transform: none;
}

.comment > .award > div {
    vertical-align: top;
    padding-top: 2px;
    display: inline-block;
}

.message {
    margin-top: 20px;
    margin-bottom: 20px;
}

.messages {
    max-height: 50vh;
    overflow: hidden;
    overflow-y: scroll;
    scroll-behavior: smooth;
    /*border-bottom:2px solid #0e191e;
    border-top:2px solid #0e191e;*/
}

.gradiant-border {
    position: relative;
    height: 2px;
    background: linear-gradient(to left, #0e191e, #000c11);
    display: block;
calc(100 % - 2 px);
}

.messages::-webkit-scrollbar {
    width: 10px; /* width of the entire scrollbar */
    cursor: pointer !important;
}

.messages::-webkit-scrollbar-track {
    background: #0e191e; /* color of the tracking area */
    cursor: pointer !important;
}

.messages::-webkit-scrollbar-thumb {
    background-color: #293d46; /* color of the scroll thumb */
    /* roundness of the scroll thumb */
    border: none;
    border-left: 2px solid #0e191e; /* creates padding around scroll thumb */
    border-right: 2px solid #0e191e; /* creates padding around scroll thumb */
    cursor: pointer !important;
}


.op {
    display: none;
    color: #00d5ff;
    font-weight: bold;
    font-size: 8px;
    vertical-align: top;
}


.forum {
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: bold;
}

.forum > div {
    display: inline-block;
    vertical-align: top;
    padding-top: 0px;
}


.forum > div > span {
    display: inline-block;
    vertical-align: top;
    padding-top: 0px;
    font-size: 17px;
}

.forum > div > .material-symbols-outlined {

    font-size: 18px;
}

.unread {
    color: #f1db05;
    font-size: 12px;
    top: 2px;
    position: relative;
}

.unread .text {
    color: #f1db05 !important;
}

.unread::before {
    background-color: #f1db05 !important;
}

.loader {
    display: block;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.c-loader {
    display: block;
    margin: 0px auto;
    width: 22px;
    height: 22px;
    position: relative;
    border: 4px solid #365563;
    animation: c-loader 2.3s infinite ease;
    -o-animation: c-loader 2.3s infinite ease;
    -ms-animation: c-loader 2.3s infinite ease;
    -webkit-animation: c-loader 2.3s infinite ease;
    -moz-animation: c-loader 2.3s infinite ease;
}

.c-loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #f1db05;
    animation: c-loader-inner 2.3s infinite ease-in;
    -o-animation: c-loader-inner 2.3s infinite ease-in;
    -ms-animation: c-loader-inner 2.3s infinite ease-in;
    -webkit-animation: c-loader-inner 2.3s infinite ease-in;
    -moz-animation: c-loader-inner 2.3s infinite ease-in;
}


@keyframes c-loader {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@keyframes c-loader-inner {
    0% {
        height: 0%;
    }

    25% {
        height: 0%;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0%;
    }
}


.empty {
    font-size: 12px;
    font-weight: normal;
    text-align: center;
    margin-top: 10px;
    text-transform: none;
    margin-top: 40px;
    margin-bottom: 40px;
    color: #81898c;
}

.icons {
    display: inline-block;
}

.icons img{
    margin-right: 4px;
}

.form-new-comment {
    margin-top: 20px;
}

.highlight {
    animation: highlighted-post-fade 3s;
    animation-duration: 3s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: highlighted-post-fade;
    animation-timing-function: ease-out;
}

@keyframes highlighted-post-fade {
    0% {
        background-color: #84939f;
    }
    100% {
        background-color: rgba(0, 0, 0, 0)
    }
}

.last-visit {
    text-align: center;
    display: block;
    border-bottom: 1px solid #f1db05;
    line-height: 0.1em;
    margin: 0px;
    width: 80%;
    margin: 0 auto 36px auto;
}

.last-visit > div {
    display: inline-block;
    font-size: 12px;
    padding: 0px 8px;
    color: #f1db05;
    background-color: #000c11;
    line-height: normal;
    position: relative;
    top: 7px;
    font-weight: normal;
}

.load-more {
    margin-top: 4px;
    text-transform: uppercase;
}

.load-more-remove {
    margin-top: 10px;
    margin-bottom: 10px;
}

.head {
    display: block;
    text-align: left;
    font-size: 0;
}

.head .logo {
    display: inline-block;
    width: 120px;
    height: 20px;
    vertical-align: top;
    overflow: hidden;
}

.head .logo a {
    display: block;
    height: 20px;
    font-size: 13px;
}

.head .logo a img {
    border-radius: 2px;
}

.head .logo a .pp {
    vertical-align: top;
    padding-top: 2px;
    display: inline-block;
}

.head .user, .head .login {
    display: inline-block;
    font-size: 13px;
    width: calc(100% - 120px);
    height: 20px;
    text-align: right;
    vertical-align: top;
}

.head .login {
    text-decoration: underline;
}

.head .user {
    display: none;
}

.head .user .name {
    display: inline-block;
}

.head .user a {
    text-decoration: underline;
    font-size: 13px;
}

.about {
    margin-top: 20px;
    margin-bottom: 12px;
    display: block;
    text-align: left;
    font-size: 12px;
    color: #b4babb;
}

.react {
    position: absolute;
    display: block;
    top: 0px;
    right: 0px;
    padding-top: 2px;
    padding-left: 5px;
    padding-right: 1px;
    background-color: #0e191e;
    -webkit-border-bottom-left-radius: 2px;
    -moz-border-radius-bottomleft: 2px;
    border-bottom-left-radius: 2px;
}

.react > .likes {
    padding-top: 2px;
    display: inline-block;
    font-size: 11px;
    color:#81bc4a;
    width: 14px;
    text-align: center;
}
.react > .likes.negative {

    color:#ab4343;
}

.react a span {

    font-size: 16px;

}
.react a {

    vertical-align: top;

}

.like.active {
    color:#f1db05!important;
}
.dislike.active {
    color:#f1db05!important;
}

.vip {
    color: #75adbe !important;
    border-color: #75adbe!important;
}
.chatmod {
    color: #a2be75!important;
    border-color: #a2be75!important;
}
.mod {
    color: #1cd765!important;
    border-color: #1cd765!important;
}
.admin {
    color: #00d5ff !important;
    border-color: #00d5ff !important;
}

.controls {
    vertical-align: top;
    display: inline-block;
    float: right;
    padding-top: 3px;
}

.controls span {
    font-size: 14px;
}

.post-edit,.post-delete,.post-ban,.post-coin,.post-view{
    display: none;
}

.text.deleted {
    color: #808080!important;
}



button.cancel {
    display: none;
    margin-top: 4px;
    background-color: #464e52!important;
}

.post .special {
    display: none;

}

.special .planned {
    color: white;
    padding: 4px 6px;
    border-radius: 3px;
    font-size: 9px;
    background-color: #a77214;
    margin-right: 6px;
    top: -1px;
    position: relative;
}


.special .added {
    color: white;
    padding: 4px 6px;
    border-radius: 3px;
    font-size: 9px;
    background-color: #0b9400;
    margin-right: 6px;
    top: -1px;
    position: relative;
}

.special .declined {
    color: white;
    padding: 4px 6px;
    border-radius: 3px;
    font-size: 9px;
    background-color: #940023;
    margin-right: 6px;
    top: -1px;
    position: relative;
}


.special .pending {
    color: white;
    padding: 4px 6px;
    border-radius: 3px;
    font-size: 9px;
    background-color: #545454;
    margin-right: 6px;
    top: -1px;
    position: relative;
}

.special .sticky {
    color: white;
    padding: 4px 6px;
    border-radius: 3px;
    font-size: 9px;
    position: absolute;
    top: -8px;
    left: -2px;
}

.special .sticky span {
    color: #00a2c2;
    transform: rotate(323deg);
    font-size: 20px;
}

.slp {
    width: 20px;
    display: inline-block;
}

.special .bluepost-1 {
    color: white;
    padding: 4px 6px;
    border-radius: 3px;
    font-size: 9px;
    background-color: #00a2c2;
    margin-right: 6px;
    top: -1px;
    position: relative;
}
.special .bluepost-2 {
    color: white;
    padding: 4px 6px;
    border-radius: 3px;
    font-size: 9px;
    background-color: #19991a;
    margin-right: 6px;
    top: -1px;
    position: relative;
}

.filters {
    font-size: 11px;
    color: #b4babb;;
    text-align: right;
}

.filters .sort-by.active {
    color: #f1db05;
}

.bloc{
    text-transform: none;
}

.edited{
    display: none;
    text-transform: none;
    font-size: 11px;
    color: grey;
    padding: 0px 8px 8px 8px;
    font-weight: normal;
    color: #40474b;
    font-style: italic;
}

.from-user, .from-search {
    display: block;
    width: 100%;
    text-align: left;
    color: #f1db05!important;
    font-size: 12px;
    text-transform: none!important;
}

.from-user span, .from-search span {
    font-size: 23px;
    position: relative;
    top: 7px;
    font-weight: bold;
}

.from-user b, .from-search b {
    color: white;
}

.btn-right {
    float: right;
    display: inline-block;
    top: -2px;
    position: relative;
}

.btn-right button {
    display: inline-block;
    padding:4px 4px;
    width: auto;
    display: inline-block;
    vertical-align: top;
    font-size:0px;
    padding: 6px 10px;
}


.btn-right button:first-child {
    margin-right: 5px;
}


.btn-right button span{
    font-size: 14px;
    font-weight: bold;
}

.like img, .dislike img {
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
    filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
    image-rendering: optimizeSpeed;
    -ms-interpolation-mode: nearest-neighbor;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -webkit-crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    outline: 1px solid transparent;


}

.like.active img, .dislike.active img, .like img:hover, .dislike img:hover {
    -webkit-filter: grayscale(0)!important;
    filter: none!important;
}

.forum:last-child .posts {
    margin-bottom: 10px!important;
}

.inversed {
    transform: rotate(180deg)  scaleX(-1);
}

.post-lock {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 10px;
    text-decoration: underline;
}

.post-locked {
    color: #ff7777;
    text-align: center;
    font-size: 10px;
    padding: 10px;
    padding-top: 30px;
}


.stats {
    font-size: 11px;
    text-align: center;
    padding-bottom: 10px;
}

.load-more-comments {
    display: block;
    margin: 10px auto;
    padding: 8px 20px;
    font-size: 12px;
    background-color: #293d46;
    color: #cdd9de;
    border: 1px solid #3a5563;
    cursor: pointer;
    text-align: center;
}

.load-more-comments:hover {
    background-color: #365563;
}

.load-more-comments:disabled {
    opacity: 0.6;
    cursor: default;
}

.load-earlier-comments {
    display: block;
    margin: 6px auto;
    padding: 6px 16px;
    font-size: 11px;
    background-color: #1e2d33;
    color: #8aacb8;
    border: 1px solid #2d4550;
    cursor: pointer;
    text-align: center;
}

.load-earlier-comments:hover {
    background-color: #253840;
}

.load-earlier-comments:disabled {
    opacity: 0.6;
    cursor: default;
}