/* Important styles */

#btn_toggle_on{
	position: fixed;
z-index: 11;
display: inline-block;
top: 65vh;
right: -50px;
opacity: 0;
width: 48px;
height: 62px;
text-align: center;
-moz-transition: all 0.8s;
-ms-transition: all 0.8s;
-o-transition: all 0.8s;
-webkit-transition: all 0.8s;
transition: all 0.8s;
	cursor: pointer;
    line-height: 1;
}
#btn_toggle_on:hover{
}
#btn_toggle_on.is-shown{
	opacity: 1;
	right: 15px;
	z-index: 100;
}
#popup_articles{
	position: fixed;
    z-index: 10;
    display: block;
    /* top: calc((100vh - 400px)/2); */
    top: 50%;
	transform: translateY(-50%);
    right: -450px;
    width: 450px;
    padding: 25px 15px 40px 15px;
    background-color: #f5f5f5;
    -webkit-box-shadow: 0px 0px 4px 0px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 4px 0px rgb(0 0 0 / 15%);
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
#popup_articles.is-shown{
	right: 20px;
	z-index: 100;
}
#btn_toggle_close{
	position: absolute;
    display: block;
    bottom: 8px;
    right: 10px;
    width: 35px;
    height: 46.5px;
    text-align: center;
	background: center center url("../images/icon_c_close.svg") no-repeat;
	background-size: contain;
	cursor: pointer;
}
#btn_toggle_close:hover{
	background-image: url("../images/icon_c_close_on.svg");
	background-size: contain;
	width: 35px;
    height: 46.5px;
}

.slick-dotted.slick-slider {
    margin-bottom: 30px;
}
#popup_articles .listWrapper {
    overflow: hidden;
}

.tab_action{
	display: flex;
	justify-content: center;
	padding: 10px 0 30px;
}
.tab_action .tab{
	padding: 0 30px;
	text-align: center;
}
.tab_action .tab .tab_icon {
    width: 30px;
    height: 39px;
    margin: auto;
    display: inline-block;
}
.tab_action .tab .tab_new_article{
	background: 0 0 url("../images/tab_icon_news_on.svg") no-repeat;
}
.tab_action .tab:hover .tab_new_article, .tab_action .tab.active .tab_new_article{
	background: 0 0 url("../images/tab_icon_news.svg") no-repeat;
}
.tab_action .tab .tab_hot_article{
	background: 0 0 url("../images/tab_icon_hots_on.svg") no-repeat;
}
.tab_action .tab:hover .tab_hot_article, .tab_action .tab.active .tab_hot_article{
	background: 0 0 url("../images/tab_icon_hots.svg") no-repeat;
}
.tab_action .tab h4 {
    margin: 0;
    font-weight: 300;
    font-size: 16px;
	letter-spacing: 3px;
	color: #999;
}
.tab_action .tab:hover h4, .tab_action .tab.active h4{
	color: var(--color);
}

.slick-dots li button::before{
	font-size: 15px;
}
.slick-dots li.slick-active button::before{
	color: var(--color);
}

.tips{
	position: absolute;
	display: inline-block;
	font-size: 1.4rem;
	line-height: 1;
	top: -25px;
	right: 65px;
	background: var(--color);
	color: #fff;
	padding: 8px 15px;
	border-radius: 50px;
	transition: all .3s;
	overflow: hidden;
	word-break: keep-all;
	opacity: 0;
	cursor: default; pointer-events: none;
}
.tips.run_mo{animation: tip_motion 35s ease-in-out both infinite 5s;}
@keyframes tip_motion{
	0%{ opacity: 0; right: 65px;}
	1.5%{ opacity: 1; right: 38px; cursor: pointer; pointer-events: painted;}
	20%{ opacity: 1; right: 38px; cursor: pointer; pointer-events: painted;}
	21.5%{ opacity: 0; right: 65px; cursor: default; pointer-events: none;}
	100%{ opacity: 0; right: 65px;}
}

#popup_articles .row_1{ padding-right: 20px;}
/* tap styles */



@media(max-width: 586px){
	#popup_articles{
		width: 92%;
		max-width: 450px;
		max-height: 100vh;
		top: inherit;
		bottom: -200vh;
		right: inherit;
		left: 50%;
		transform: translateX(-50%);
	}
	#popup_articles.is-shown{
		bottom: 20px;		
	}
    #btn_toggle_on{ width: 40px; height: 51.667px;}
	#popup_articles .row_1{ padding-right: 20px;}
}