.portal_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 0 0 2.4em 0;
    background: #1b1f27;
    border-radius: .5em;
    margin-bottom: 2em;
    position: relative;
    z-index: 1;
    border: 1px solid #252a37;
}

.portal_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    margin-top: 1em;
    padding-left: .75em;
}

.portal_image {
    width: 200px;
    min-height: 120px;
    display: flex;
    float: left;
    margin-right: 1.5em;
    overflow: hidden;
    border-radius: 0.25rem;
    position: relative;
    border: 1px solid #262b36;
    align-items: center;
    justify-content: center;
}

.portal_row:hover .portal_image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image: linear-gradient(to bottom, transparent 30%, rgba(21,17,29,.65));
    opacity: .7;
    transition: all .4s ease;
}

.portal_image > img {
    background-size: cover !important;
    height: 100%;
    width: 100%;
    max-height: 100%;
    max-width: 100%;
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    transition: all .6s ease;
    filter: grayscale(.6) brightness(.9);
    border-radius: .25em;
}

.portal_row:hover .portal_image img {
    opacity: 1;
    filter: none;
    transform: scale(1.1);
}

.portal_image img:not(:first-child) {
    display: none;
}

.portal_main {
    height: 120px;
    flex: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 100%;
}

.portal_title {
    margin: 0em 0 1em 0;
    width: 100%;
    padding: 1rem 2em 0 2em;
}

.portal_subject {
    display: inline-block;
    color: #ccd6dd;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.portal_message {
    color: #657786;
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 0.75rem;
}

.portal_row:hover .portal_foot {
    visibility: visible;
    opacity: 1;
}

.portal_foot {
    background-color: rgb(19,27,40);
    background-image: linear-gradient(-90deg, rgb(31, 36, 44) 0%, rgb(36, 41, 50) 100%);
    padding: 0 10px;
    border-radius: 0;
    font-size: 12px;
    overflow: hidden;
    position: relative;
    visibility: hidden;
    opacity: 0;
    transition: opacity .4s linear;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    border-radius: .25em .25em 0 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    margin-top: .75em;
}

ul.portal_foot_left > li {
    padding: 0 10px;
    display: inline-block;
    margin: 10px 0;
    color: #eee;
    font-weight: 400;
    border-right: 2px solid #1b1f27;
}

ul.portal_foot_left > li:last-child {
    border: 0;
}

ul.portal_foot_right li:last-child {
    background-color: #ff6a4a;
    display: inline-block;
    padding: 0 20px;
    font-weight: 400;
    border: 0;
    margin-right: -10px;
}

ul.portal_foot_right > li {
    background-color: #1b1f27;
    font-size: 13px;
    height: 38px;
    line-height: 38px;
    padding: 0 12px;
    border-right: 1px solid #22272f;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    cursor: pointer;
}

.portal_foot > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

ul.portal_foot_right li:last-child a {
    color: #fff;
}

ul.portal_foot_right li a {
    color: #e3e3e3;
}

ul.portal_foot_right li:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #ff6a4a;
    width: 100%;
    border-radius: 100%;
    height: 100%;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
}

ul.portal_foot_right li:hover:after {
    border-radius: 0%;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}

ul.portal_foot_right li:hover a {
   color: #fff;
}

.sidebar_trow dl.newuser {
    justify-content: flex-start;
}

.sidebar_trow dl.newuser i {
    border: 4px solid #14171d;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 9999rem;
    margin-right: .75rem;
    font-size: 15px;
    color: #ff6a4a;
}

#portal_stats a.stats_button {
    height: calc(2rem + 2px);
    background-color: #14171d;
    border-radius: calc(1rem + 1px);
    display: block;
    text-align: center;
    line-height: calc(2rem + 2px);
    padding-left: .75rem;
    padding-right: .75rem;
    white-space: nowrap;
    color: #cecece !important;
    border: 1px solid #19212f;
    transition: background-color .2s ease-in-out;
}

#portal_stats a.stats_button:hover, #loadMore:hover {
    box-shadow: 0 0 15px 0px rgba(255, 106, 74, 0.45);
    background-color: #ff6a4a;
    border-color: #ff6a4a;
    color: #fff !important;
}

.sidebar_trow dl dd.stats_box {
    display: inline-block;
    padding: .55em .8em;
    font-size: 80%;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    border: #14171d 1px solid;
    position: relative;
    min-width: 4.3em;
    background: #14171d;
    width: auto;
}

.sidebar_trow dl dd.stats_box:after, .sidebar_trow dl dd.stats_box:before {
	right: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.sidebar_trow dl dd.stats_box:after {
	border-color: rgba(136, 183, 213, 0);
	border-right-color: #14171d;
	border-width: 4px;
	margin-top: -4px;
}

.sidebar_trow dl dd.stats_box:before {
	border-color: rgba(0, 0, 0, 0);
	border-right-color: #14171d;
	border-width: 5px;
	margin-top: -5px;
}

.portal_postlink > a {
    font-weight: 600;
    font-size: 12px;
}

.portal_postdate {
    font-weight: 300;
    color: #a3a3a3;
    font-size: 12px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.portal_posterlink {
    color: #a3a3a3;
    font-size: 12px;
}

#portal_welcome input.textbox {
    width: 100%;
    margin-bottom: 0.5rem;
    display: block;
}

#portal_welcome input.button {
    width: 100%;
}

#portal_search input.textbox {
    width: 100%;
}

.portalmessage{
	display :none !important;
}


@media (max-width: 660px) and (min-width: 240px) {
	.portal_image {
		width: 100%;
		margin: 0 0 1.5em 0;
	}

	.portal_main {
		width: 100%;
	}

	.portal_content {
		flex-direction: column;
	}
	.portal_foot > ul.portal_foot_left > li:not(:first-child), 
	.portal_foot > ul.portal_foot_right > li:last-child {
		display: none;
	}

	.portal_foot {
		padding-right: 0;
	}
	.portal_subject {
   	    font-size: 15px;
	}

	.portal_message {
		font-size: 12px;
	}
}
		
		
		
		
/** portal **/
.portal_content {
    display: flex;
    align-items: flex-start;
}

.portal_right {
    flex: 0 0 262px;
    float: right;
    margin-left: 10px;
}

.portal_left {
    float: left;
    flex: 1 1 auto;
}

.portal_cat_left a {
    color: #ff6a4a;
}

.portal_cat {
    background: #161a23;
    border-bottom: 1px solid #1d2330;
    padding: 10px;
    overflow: hidden;
}

.portal_contents {
    background: #1b1f27;
    box-shadow: inset 0 0 15px 0px rgba(0, 0, 0, .75);
    padding: 10px 14px 18px 14px;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}

.portal_cat_right {
    float: right;
}

.portal_cat_left {
    float: left;
}

.portal_contents a.Button {
    float: right;
    margin-top: 20px;
    background: #161a23;
    border: 1px solid #1d2330;
    font-size: 11px;
    border-radius: 4px;
    margin-left: 2px;
    color: #ff6a4a;
    height: 30px;
    line-height: 30px;
    text-align: center;
    padding: 0 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.portal_contents a.Button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #ff6a4a;
    width: 100%;
    border-radius: 100%;
    height: 100%;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
}

.portal_contents a.Button:hover:after {
    border-radius: 4px;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}

.portal_contents a.Button:hover {
    color: #fff;
}

.portal_contents a.Button i {
    line-height: 30px;
    vertical-align: top;
    margin-right: 2px;
}

.portal_contents a.Button i.fa-sort-down {
    margin-top: -2px;
}

.portal_body {
    overflow: hidden;
    width: 100%;
    display: block;
    max-height: 678px;
    min-height: 70px;
    position: relative;
}

.portal_body img {
    max-width: 50%;
}

.portal_body:after {
    content: "";
    height: 30px;
    right: 0;
    bottom: -3px;
    left: 0;
    position: absolute;
    z-index: 1;
    background: #1b1f27;
    box-shadow: 0px 0 20px 20px #1b1f27;
}

.portal_body.more {
    height: 100%;
    max-height: 100%;
}

.portal_body.more:after {
    display: none;
}

.portal_thead {
    background: #161a23;
    padding: 25px 20px;
    font-size: 13px;
    text-transform: uppercase;
    border-bottom: 1px solid #14171d;
    color: #949ba5;
    font-weight: 600;
}

.portal_links a {
    border-bottom: 1px solid #14171d;
    display: block;
    padding: 20px;
    background: #1b1f27;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
}

.portal_links a:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 0%;
    bottom: 0;
    z-index: -1;
    background-color: #161a23;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
}

.portal_links a:hover:after {
    height: 100%;
}

.portal_links a:hover {
    color: #ff6a4a;
}

.portal_thead i {
    color: #ff6a4a;
    margin-right: 6px;
}

.portal_latestthreads {
    position: relative;
    background: #1b1f27;
    border-bottom: 1px solid #14171d;
    padding: 20px;
}

.portal_latestthreads:hover .portal_postavatar {
    -webkit-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    color: #ff6c4a;
}

.portal_postavatar {
    position: absolute;
    right: -30px;
    display: block;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    margin-top: 3px;
    width: 58px;
    height: 58px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
    background: #1b1f27;
    border: 4px solid #14171d;
    text-align: center;
    font-size: 20px;
    color: #a7aebf;
    padding: 11px 0 0 4px;
    z-index:999;
}

.portal_postavatar i {
    line-height: inherit;
    margin-right: 5px;
}

.portal_postlink a {
    font-weight: 600;
    color: #ff6a4a;
    text-transform: uppercase;
    font-size: 13px;
}

.portal_postdate {
    font-weight: 300;
    color: #a0a7b7;
    font-size: 12px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.portal_posterlink {
    color: #a8b1c7;
    font-size: 12px;
}

.portal_posterlink i {
    margin: 0 4px;
}

		
@media screen and (max-width: 980px) {		
.portal_content {
    display: block;
}
.portal_right {
    margin: 0;
}		
}		
		
		
		
		
		
		
		
		
		
		
		
		
		