*{
    box-sizing: border-box;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.forum-parent {
    position: relative;
    width: 100%;
    color: #888;
	margin-bottom: 1rem;
}

.forum-parent-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 30%);
    border-radius: 8px;
}

.forum-header {
	padding: 8px 16px 8px 20px;
    display: flex;
	flex-basis: 100%;
    align-items: center;
    justify-content: space-between;
/*     box-shadow: 2px 3px 5px rgb(0 0 0 / 50%), inset 2px 3px 5px rgb(255 255 255 / 40%), -2px -3px 4px rgb(255 255 255 / 40%), inset -2px -3px 4px rgb(0 0 0 / 22%); */
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
}

.forum-category {
    display: flex;
    flex-direction: column;
}

.forum-category a {
    font-size: .9em;
    text-decoration: none;
    font-family: 'Lucida Sans', sans-serif;
    font-weight: 800;
    padding: .2rem .5rem;
    border-radius: 5px;
    color: rgb(34, 34, 34);
    color: #fff;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.3)
}

.forum-decription {
    font-weight: 200;
    color: rgb(104, 104, 104);
    margin-top: 8px;
}

label.mod-check-box {
    padding: 5px;
/*     box-shadow: 2px 2px 6px rgb(0 0 0 / 31%), -3px -3px 6px rgb(255 255 255 / 72%), inset 2px 2px 7px rgb(0 0 0 / 28%), inset -2px -3px 7px rgb(255 255 255 / 39%); */
    border-radius: 6px;
	cursor: pointer;
    background: #a8ff1e;
}

.forum-card {
    position: relative;
    width: 100%;
}

.forum-inner-card {
    position: relative;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    overflow: hidden;
    border-bottom: 1px solid var(--slide-white);

}

.forum-inner-card:last-child {    
    border-radius: 0 0 10px 10px;
}

.forum-icon {
    flex-basis: 3.4rem;
    position: relative;
    text-align: center;
}

.forum-icon, .forum-name, .forum-info, .forum-lastpost {
    border-right: 1px solid var(--slide-white);
}

.forum-lastpost {
	border-right: none;
}

.forum-name {
    width: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 5px;
}

.forum-name a {
    margin-left: 2px;
}

.forum-name .smalltext {
    font-size: 12px;
}

.forum-infocard-meta {
    display: none;
	gap: 11px;
	margin-top: 5px;
}

.sub-forum {
    display: inline;
}

.sub-forum-inner {
    display: flex;
}

.sub-forum-list {
    margin-left: 7px;
    margin-top: -1px;
}

.sub-forum-icon {
    display: inline-block;
    font-size: 9px;
    height: 10px;
    width: 10px;
    color: #555;
    opacity: 0.5;
}

.forum-info {
    flex-basis: 10%;
    padding: 15px 10px;
}

.forum-infocard {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.forum-details {
    display: flex;
    gap: 5px;
}

.forum-lastpost {
    width: 16rem;
    display: flex;
    align-items: center;
    padding: 15px 10px;
    white-space: nowrap;
}

.forum-lastpost-inner {
    width: 100%;
    display: flex;
    align-items: center;
}

.lastpost-info {
    width: 100%;
}

.lastpost-sub {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
	font-size: 12px;
}

.dot {
    display: none;
    position: relative;
    padding: 0 9px;
}

.dot::before {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f111";
    font-size: 4px;
    font-weight: 900;
    color: #646464;
}

.sub-forum-parent {
	margin: 1rem 0;
}


@media (max-width: 768px) {
    .forum-infocard-meta {
        display: flex;
    }
    
    .forum-name .forum-decription {
        display: none;
    }

    .forum-info {
        display: none;
    }
}

@media (max-width: 650px) {

    .forum-name, .forum-info, .forum-lastpost, .forum-icon {
    	border: none;
	}

    .forum-lastpost {
        position: relative;
        flex: 1 100%;
        padding: 0;
    }

    .forum-lastpost-inner {
		padding: 1rem;
		background: var(--point-white);
/* 		border-radius: 0 0 10px 10px; */
		box-shadow: 1px 1px 2px 1px rgb(68 63 63 / 10%);
	}

    .lastpost-info {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .time-auth {
        display: flex;
		align-items: center;
    }

	 .dot {
		display: flex;
	}

    .lastpost-author > span{
        display: none;
    }
}

/** thread lists css **/


.threadlist-inner-card {
    position: relative;
    display: flex;
    width: 100%;
    flex: 1 1 100%;
    flex-wrap: wrap;
    overflow: hidden;
}

.thread-folder, .thread-icon, .thread-card, .thread-info, .thread-ratings, .thread-lastpost {
    display: flex;
    justify-content: center;
    align-items: center;
/*     border-right: 1px solid var(--slide-white); */
}

.icon-folder {
    position: relative;
    height: 100%;
    display: flex;
}

.thread-folder, .thread-icon {
    width: 3rem;
/*     background: var(--just-white);
    border: 1px solid;
    border-color: var(--white) var(--slide-white) var(--slide-white) var(--white); */
}

.thread-card {
    position: relative;
    width: 25rem;
    overflow: hidden;
    white-space: nowrap;
    flex-grow: 1;
    justify-content: flex-start;
}

.thread-inner-card {
    width: 100%;
    padding: 0.8rem 0;
	padding-left: 1rem;
    white-space: nowrap;
	overflow: hidden;
}

.thread-sub {
    width: 100%;
    margin-bottom: 3px;
}

.thread-sub-inner {
	width: 98%;
    display: flex;
    align-items: center;
    gap: 2px;
}

.thread-sub-inner span {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.thread-author {
    margin-bottom: 3px;
}

.thread-info {
    flex-basis: 8rem;
}

.thread-infocard {
    display: flex;
    flex-direction: column;
}

.thread-ratings {
    width: 8rem;
}

.thread-lastpost {
    width: 20rem;
    overflow: hidden;
    white-space: nowrap;
    justify-content: flex-start;
    padding: 10px;
}

.thread-lastpost-inner {
    width: 100%;
}

.thread-lastpost-info {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    gap: 3px 0;
}

.lastpost-author {
    margin: 3px 0;
}

.forum-mod-card {
	border: none;
}

.thread-mod-label {
    position: absolute;
    right: 0;
    width: 3rem;
    height: 100%;
    z-index: 1;
}

label.thread-mod-label > input {
    position: absolute;
    visibility: hidden;
    right: 0;
    width: 0;
    z-index: 1;
    transition: 0.4s width, 0.1s visibility;
}

.forum-card:hover label.thread-mod-label > input, label.thread-mod-label > input:checked {
    visibility: visible;
    width: 3rem;
}


label.thread-mod-label > label {
    position: absolute;
    height: calc(100% - 2px);
    right: 0;
    width: 0;
    z-index: -1;
    background: transparent;
    backdrop-filter: blur(5px);
    transition: 0.4s width;
    cursor: pointer;
    background: rgba(255 255 255 / 4%);
}

.forum-card:hover label.thread-mod-label > label, label.thread-mod-label > input:checked ~ label {
    width: 3rem;
    box-shadow: -2px 0 4px rgba(0 0 0 / 20%);
}

.simple-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 8px;
    padding: 5px;
}

@media (min-width: 800px) and (max-width: 1136px) {
    .thread-lastpost {
        flex: 1 100%;
        border-top: 1px solid var(--slide-white);
        padding-left: 2rem;;
    }

    .thread-lastpost, .thread-ratings {
        border-right: none;
        transition: 0.4s;
    }

    .forum-card:hover .thread-lastpost, .forum-card:hover .thread-ratings {
        border-right: 1px solid var(--slide-white);
    }
}

@media (max-width: 800px) {

    .threadlist-inner-card {
        border-right: 1px solid var(--slide-white);
    }

    .thread-folder, .thread-icon, .thread-card, .thread-info, .thread-ratings, .thread-lastpost {
        border-right: none;
    }

    .thread-folder, .thread-icon {
        flex-grow: 1;
    }

    .icon-folder {  
		background: transparent;
		backdrop-filter: blur(5px);
        box-shadow: 2px 2px 6px 1px rgb(0 0 0 / 30%);
        flex-direction: column;
    }
	
	.icon-folder > .trow1 {
		border-right: none;
	}

    .thread-icon{
        border-top: 1px solid var(--slide-white);
    }

    .thread-info {
        display: none;
    }

    .thread-start-box {
        display: flex;
        margin: 5px 0;
        gap: 8px;
    }

    .thread-start-box .dot {
        padding: 0;
    }


    .thread-author {
        margin-bottom: 0;
    }

    .thread-ratings {
		position: absolute;
		right: 3rem;
		border: none;
/* 		bottom: 0;
		margin-bottom: 1.16rem; */
    	top: calc(88.53px / 2);
    	transform: translateY(-50%);
		background: transparent;
    }

    .thread-lastpost {
        flex: 1 1 100%;
        padding: 1rem;
        background: var(--toolbar-bg) !important;
        box-shadow: 0 -3px 3px rgb(255 255 255 / 10%), inset 0 2px 5px rgb(0 0 0 / 20%);
		border: none;
    }
}

@media (max-width: 450px) {
	.thread-ratings {
		top: calc(271.53px / 2);
	}
}


.no_thread {
    border: none;
    padding: 3rem 1rem;
    text-align: center;
    font-size: 1rem;
}

.imp_thread {
    background: #ff8200;
}

.announce-thread {
    background: #e7e134;
}

.normal-thread {
    background: #45ef45;
}

.normal-thread, .announce-thread, .imp_thread {
	color: #222;
}
		
		
		
		
		