ul.thread_tools,
ul.thread_tools li {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.thread_tools li {
	padding-left: 24px;
	padding-bottom: 4px;
	margin-bottom: 3px;
	font-size: 11px;
	background-image: url(../../../images/showthread_sprite.png);
	background-repeat: no-repeat;
}

ul.thread_tools li.printable {
	background-position: 0 0;
}

ul.thread_tools li.sendthread {
	background-position: 0 -20px;
}

ul.thread_tools li.subscription_add {
	background-position: 0 -40px;
}

ul.thread_tools li.subscription_remove {
	background-position: 0 -60px;
}

ul.thread_tools li.poll {
	background-position: 0 -80px;
}

.showthread_spinner {
	width: 100%;
	margin: 0 auto;
	display: block;
	text-align: center;
	padding: 20px;
}







 /*// =============================
 // SHOWTHREAD
 // ============================= */

/* ============================= */
/* Showthread Desktop CSS         */
/* ============================= */

.thread-container
 {
    background: var(--bg-primary);
    /* border: 1px solid var(--border-color); */
    color: var(--color-text);
    border-radius: 6px;
    margin: 20px auto;
    /* padding: 15px; */
    /* width: 80%; */
}

.thread-header, .thread-footer {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

#posts_container {
    margin-bottom: 15px;
}

.thread-navigation {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.thread-tools, .moderation {
    margin: 10px 0;
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}

.clear {
    clear: both;
}

/* Individual posts */
#posts .postbit {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}




/* ============================= */
/* Showthread Responsive CSS      */
/* ============================= */

@media screen and (max-width: 992px) {
    .thread-container {
        width: 95%;
        padding: 10px;
    }

    .thread-header, .thread-footer {
        padding: 8px 10px;
    }

    .thread-navigation {
        flex-direction: column;
        gap: 10px;
    }

    .float_left, .float_right {
        float: none;
        text-align: center;
    }

    #posts .postbit {
        padding: 10px;
    }

    .thread-tools, .moderation {
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .thread-container {
        width: 100%;
        padding: 8px;
    }

    .thread-header, .thread-footer {
        font-size: 14px;
        padding: 6px 8px;
    }

    #posts .postbit {
        padding: 8px;
        font-size: 14px;
    }

    .thread-tools, .moderation {
        font-size: 14px;
    }
}





 /*// =============================
 // POSTBIT RESPONSIVE
 // ============================= */


.post {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--color-text);
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    font-family: 'Chakra Petch', sans-serif;
}

.post_author {
    display: flex;
    padding: 10px;
    /* background: var(--bg-secondary); */
    border: 1px solid var(--border-color);
    align-items: flex-start;
    gap: 10px;
}

.author_information {
    flex: 1;
}

.author_information .largetext {
    font-size: 16px;
}

.author_statistics {
    font-size: 12px;
    text-align: right;
}

.post_content {
    padding: 10px;
}

.post_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.post_body {
    font-size: 14px;
    line-height: 1.5;
}

.post_meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 10px;
}

.post_controls {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-top: 1px solid var(--border-color);
}

.postbit_buttons a {
    margin-right: 5px;
    text-decoration: none;
    color: var(--color-text);
}

.postbit_buttons a:hover {
    color: #1e90ff;
}

/* Float helpers */
.float_left { float: left; }
.float_right { float: right; }

/* Clear floats */
.post_controls::after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (max-width: 992px) {

    .post_author {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .author_statistics {
        text-align: left;
        font-size: 11px;
        margin-top: 5px;
    }

    .post_head {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .post_controls {
        flex-direction: column;
        gap: 5px;
    }

    .postbit_buttons {
        display: flex;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 576px) {

    .post {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .post_author {
        padding: 8px;
        gap: 5px;
    }

    .post_content {
        padding: 8px;
    }

    .post_head {
        font-size: 12px;
    }

    .post_body {
        font-size: 13px;
    }

    .post_controls {
        padding: 8px;
    }

    .postbit_buttons a {
        margin-bottom: 3px;
    }
}






 /*// =============================
 // POSTBIT 
 // ============================= */


.post-ccl {
    background: #050912;
    padding: 5px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    padding-bottom: 40px;
    border-top: 1px solid #0a1224;
}


.post-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    justify-content: space-between;
    height: 75px;
    align-items: center;
}
img#avatar-post {
    width: 35px;
    height: 35px;
    border-radius: 3333px;
    margin: 0;
    border: 2px solid #264059;
}

.itemss {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.post\=avek {
    margin-right: 15px;
}
span.nick-post {
    display: block;
    font-size: 14px;
}
span.rang-post {
    font-size: 11px;
    display: block;
}
.post-itemss-data {
    font-size: 11px;
}
div#post_meta_1 {
    font-size: 10px;
    margin: 13px 0px;
    color: #a0a0a0;
}

.post-items1 {
    padding: 20px;
    font-size: 14px;
    font-weight: 500;
}

span.online12 {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #00b52a;
    margin: 9px -26px;
    border-radius: 3333px;
    border: 1px solid #00000063;
}
img.attachment {
    border: 1px solid #264059;
    padding: 2px;
    margin: 20px 0px;
}

.post_meta {
    font-size: 11px;
    color: #b7b7b7;
}


.information-userr {
    display: inline-block;
    font-size: 15px;
    margin: 0px 5px;
    color: #dfdfdf;position:relative;
}
.information-userr:hover .hidde-box {display:inline-block;cursor:pointer;}

.block-hidde-box {
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    align-items: center;
}

.hidde-box {
    display: none;
    position: absolute;
    background: #101927;
    padding: 10px 20px;
    left: -110px;
    top: 24px;
    border-radius: 7px;
    min-width: 230px;
}
table {
    font-size: 13px;
    color: #657087;
}
.post_meta {
    font-size: 11px;
    margin: 20px 0px;
    color: #657087;
}
.post_meta a {

    color: #657087;
}
.postbit_buttons a span {
    display: inline-block;
    height: 16px;
    padding: 0;
    background-repeat: no-repeat;
    background: none;
    border: none;
}
.postbit_buttons > a:link, .postbit_buttons > a:hover, .postbit_buttons > a:visited, .postbit_buttons > a:active {
    display: inline-block;
    padding: 9px 10px;
    margin: 5px 2px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--color-text);
}


.postbit_buttons > a:hover {
    border-color: none;
    opacity: 0.7;
	background: var(--bg-secondary);
}
.tborder12 {
    width: 100%;
}
.butson {
    display: flex;
    justify-content: end;
    margin: 10px 0px;
}
.content-quickreply {
    padding: 20px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
}
.quick-reply-text {
    width: 100%;
    display: block;
    margin-bottom: 15px;
    border-radius: 4px;
    border: none;
    padding: 10px;
    /* height: 100px; */
    box-sizing: border-box;
    /* font-size: 14px; */
    /* font-weight: 800; */
    color: var(--color-text);
    background: var(--bg-primary);
}
		

.iconfapost {
    padding: 10px;
    background: #161e29;
    border-radius: 50px;
    font-size: 17px;
    color: #2c8c69;
    height: 14px;
}
span.titleboxfont {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-left: 10px;
}

.spacer-tbox {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    height: 2px;
    background: var(--border-color);
}


.threadboxtitle {
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 3px;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
}

.flex-authinfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-tboxleft {
    display: flex;
    align-items: center;
}

.avatar-tbox {
    margin-right: 10px;
}

.special-thread-btn {
    display: flex;
    align-items: center;
}

.thread-share-btn {
    margin-right: 20px;
}

.topic-usf {
    padding: 12px 15px;
    border-radius: 4px;
    margin-right: 10px;
    background: var(--bg-primary);
    color: var(--color-text);
}

.topic-subscribee {
    padding: 10px 15px;
    border-radius: 4px;
    margin-right: 10px;
    color: var(--color-text);
    background: var(--bg-primary);
}
span.subsnr {
    background: black;
    padding: 4px 10px;
    border-radius: 3px;
    margin-left: 5px;
    margin-right: -10px;
}


.post-card {
    border-radius: 5px;
    margin: 0px 0 20px 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--color-text);
}

.post-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}

.post-user-info {
    /* flex: 0 0 240px; */
    text-align: center;
    background: #211a3700;
    border-radius: 10px;
    padding: 15px;
    color: #fff;
}

.post-avatar img {
    border-radius: 50%;
    width: 140px;
    height: 140px;
    object-fit: cover;
}

.post-username {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 15px;
}

.post-rank {
    font-size: 14px;
    color: #ffffff;
    margin-top: 15px;
    /* background: #0a071b9e; */
}

.post-user-stats {
    /* display: flex; */
    /* justify-content: center; */
    /* gap: 10px; */
    margin-top: 15px;
}

.post-user-meta {
  font-size: 0.85em;
  color: #ccc;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    padding: 10px;
}

.post-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85em;
  color: #bbb;
  margin-bottom: 10px;
}

.post-message {
    /* border-radius: 7px; */
    height: 100%;
    color: var(--color-text);
}


.post-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.postbit_buttons {
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 768px) {
    .post-container {
        /* flex-direction: column; */
    }

  .post-user-info {
    flex: 1 1 100%;
  }

  .post-content-area {
    flex: 1 1 100%;
  }

  .post-actions {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}



span.liczba-wiado-stats {
    position: relative;
    font-size: 12px;
    background: #3b394d;
    color: #fff;
    padding: 10px 10px;
    border-radius: 50px;
    right: -15px;
    top: 18px;
    text-shadow: 0px 0px 2px #5138ee;
    margin-right: -13px;
}


.profile-pb-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: nowrap;

}

.block-stats-box {
    padding: 10px 20px;
    margin-right: 5px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    border-radius: 4px;
    text-align: start;
    font-weight: 600;
    color: var(--color-text);
}



span.autorinfo_icon {
    padding: 10px;
    /* background: #0a071b; */
    border-radius: 50px;
    border: 1px solid #2a263f;
}


.icon_x {background: #7660ff;}
.icon_y { background: #119733; margin-right: 4px; }
.icon_z {background: #ff3939;}


.autorinfo_icon:before {

}

.profile-pb-stats-down {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 25px;
    margin-top: -15px;
}


.writeby-infox {
    font-size: 12px;
    /* font-weight: 600; */
}





















































		
		











		
		



































 /*// =============================
 // POSTBIT 
 // ============================= */
















 /*// =============================
 // SHOWTHREAD RESPONSIVE
 // ============================= */

