.side-btn{
	position:fixed;
	bottom:70px;
	right:20px;
	width:225px;
	@media screen and (max-width:1280px) { 
		width:200px;
	}
	@media screen and (max-width:768px) { 
		width:150px;
		right:15px;
		bottom:20px;
		transition:translate .5s;
		translate:0;
		&.active{
			translate:0 -120px;
		}
	}
	z-index:9;
}
.side-btn--close{
	text-align:right;
	font-weight:bold;
	font-size:13px;
	cursor:pointer;
	@media screen and (max-width:768px) { 
		font-size:0;
		height:20px;
	}
}
.side-btn--close .inner{
	display:inline-flex;
	justify-content:flex-end;
	align-items:center;
	position:relative;
	column-gap:5px;
	&:before{
		content:"";
		display:block;
		width:15px;
		height:15px;
		background:#fff;
		border-radius:50%;
	}
	.i-close{
		width:15px;
		height:15px;
		display:flex;
		justify-content:center;
		align-items:center;
		flex-wrap:wrap;
		position:absolute;
		top:2px;
		left:0;
		@media screen and (max-width:768px) { 
			top:-1px;
		}
		&:before,&:after{
			content:"";
			display:block;
			width:12px;
			height:2px;
			background:#000;
			position:absolute;
			top:50%;
			left:50%;
		}
		&:before{
			rotate:45deg;
			translate:-50%;
		}
		&:after{
			rotate:-45deg;
			translate:-50%;
		}

	}
}

#global-header{
	.btn-news{
	display:none;
	@media screen and (max-width:768px) { 
		display:block;
	}
		color:#000;
		font-size:11px;
		font-weight:bold;
		margin-right:20px;
		a{
			color:#000;
		}
	}

}