/*
Reset
*/

/*
Roboto font
*/

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #616161;
    overflow-x: hidden!important;
}

a {
    color: #eb1c23;
}

/*
Header
*/
header{
	background-color:#f9fbff;
}
header .main_header{
	display:flex;
	height:80px;
}
header .main_header .logo{
	max-width:250px;
	width:100%;
	display: flex;
	align-items:center;
	
}
header .main_header .menu{
	display: flex;
	align-items:center;
	width:100%;
}
header .main_header .menu .menu_main{
	display:flex;
	padding:0;
	list-style:none;
	margin:0;
	position:relative;
	width:70%;
}
header .main_header .menu .menu_main:after{
	content:"";
	height: 100%;
	width:1px;
	background-color:#dadada;
	position:absolute;
	right:0;
}
header .main_header .menu .menu_main li{
    margin: 0 15px;
}

header .main_header .menu .menu_main li a{
	text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
	color: #616161;
}
header .main_header .menu .menu_main li a:hover{
	color: #eb1c23;
}
header .main_header .others_option{
	padding: 0 0px;
	list-style:none;
	margin:0;
	width:30%;
	display:flex;	
}
header .main_header .others_option>li{
	margin: 0 15px;
    width: 100%;
    font-size: 16px;
    position: relative;
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
header .main_header .others_option>li>a{
	text-decoration:none;
	color:#616161;
	text-transform:uppercase;
	font-weight:500;
	font-size:15px;
}
header .main_header .others_option>li a:hover{
	color: #eb1c23;
}
header .main_header .others_option>li a:hover ~ ul,
header .main_header .others_option>li:hover ul,
header .main_header .others_option>li>ul:hover{
	opacity:1;
	visibility: visible;
}
header .main_header .others_option ul{
	list-style:none;
	padding:0;
	margin: 0;
	opacity:0;
	visibility: hidden;
	position: absolute;
	top: 100%;
	margin-top:-1px;
	z-index:8;
	box-shadow: 0 14px 20px 0 rgba(0,0,0,.15);
    -o-box-shadow: 0 14px 20px 0 rgba(0,0,0,.15);
    -moz-box-shadow: 0 14px 20px 0 rgba(0,0,0,.15);
	-webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	-o-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
    transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
	background-color:#fff;
}
header .main_header .others_option ul li{
    border-bottom: 1px solid #eee;
}
header .main_header .others_option ul li a{
	width: 130px;
    text-align: end;
    padding: 10px 15px;
	display: block;
	color:#616161;
	font-size:14px;
	text-transform:uppercase;
	text-decoration: none;
}
header .main_header .others_option ul li:hover{
	background-color: #eb1c231f;
	color:#fff;
}
header .main_header .others_option ul li:last-child{
	border-bottom:0;
}
header.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 8;
    background: #fff;
    -webkit-box-shadow: 0 7px 40px 0 rgba(150,176,203,.2);
    -moz-box-shadow: 0 7px 40px 0 rgba(150,176,203,.2);
    box-shadow: 0 7px 40px 0 rgba(150,176,203,.2);
}

/*
* .widget
*/
.widget{
	
}
.widget .item{
	display:flex;
}
.widget .item .icon{
	max-width:60px;
	width:100%;
	display:flex;
	align-items:center;
}
.widget .item .icon i{
	font-size:40px;
	/*color: #007cdc;*/
}
.widget .item .content .title{
    font-size: 30px;
    margin-bottom: 0px;
}
.widget .item .content .desc{
	font-size:14px;
	margin-bottom:0px;
}
.widget .widget-inner{
	/*background-color:#fff;*/
	padding:15px;
	background-image: linear-gradient(45deg, #ff7cb0, #eb1c23);
    color: #fff;
}
/*
*	product
*/
.product{
	padding-bottom:60px;
}
.product .tabs-product{
	display: flex;
    max-width: 650px;
    margin: 0 auto;
	flex-wrap: nowrap;
}
.product .tabs-product li{
	width:100%;
	margin:0 5px;
}
.product .tabs-product li a{
	font-size:20px;
	text-transform:uppercase;
	font-weight:300;
	background-color: #4d5669;
	padding: 13px 15px;
	border-radius: 0;
	color:#fff;
	text-align:center;
}
.product .tabs-product li a.active{
    background-color: #007cdc;
}
.product .tab-content{
	max-width:700px;
	margin:30px auto 0;
}

.product .tab-content .title{
    font-size: 30px;
	font-weight:500;
}
.product .tab-content .list_currency{
	margin-top:30px;
}
.product .tab-content .list_currency .item{
	padding:20px;
	display:flex;
	background-color:#fff;
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	margin-bottom:20px;
}
.product .tab-content .list_currency .item .name,
.product .tab-content .list_currency .item .flag,
.product .tab-content .list_currency .item .percent,
.product .tab-content .list_currency .item .chart{
	width:100%;
}
.product .tab-content .list_currency .item .name{
	font-size:20px;
	font-weight:300;
	color: #007cdc;
}
.product .tab-content .list_currency .item .percent{
	font-size: 20px;
    font-weight: 300;
}

/*
* Service
*/
.why_choice{
	background-color:#ebeef5;
	position:relative;
}
.why_choice h2{
	font-size:30px;
}
.why_choice .service_item{
	display:flex;
}
.why_choice .service_item .item{
	width:100%;
}
/*
.why_choice .bg_choice{
	background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    width: 60vw;
    height: 50vw;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
	position: absolute;
    top: 0;
    left: -15%;
    border-radius: 50%;
    outline: 1px solid transparent;
    z-index: 2;
}
.why_choice:before{
	content:"";
	background-image: linear-gradient(45deg, #ff7cb0, #eb1c23);
    width: 60vw;
    height: 51vw;
    -webkit-transform: rotate(178deg);
    transform: rotate(178deg);
    position: absolute;
    top: 0;
   left: -13%;
    border-radius: 50%;
    outline: 1px solid transparent;
    z-index: 1;
    background-repeat: repeat-x;
}*/

.why_choice .item:first-child{
	background-image: linear-gradient(45deg, #ff7cb0, #eb1c23);
	background-image:url(/public/assets/images/5f2e4ea3dc4ed.jpg);
	position:relative;
}
.why_choice .item:first-child:after{
	content:"";
	background-image: linear-gradient(90deg,#ffffff00, #ffffff2e, #ebeef5);
	position:absolute;
	width:100%;
	height:100%;
}
.why_choice .item:last-child{
	padding:60px 20px;
}

/*
* Platform
*/
.platform {
	margin-bottom:160px;
}
.platform .panel_platform{
	max-width:1300px;
	margin-left:auto;
	margin-right:auto;
	background-color:#fff;
	padding:60px;
	box-shadow: 6px 5px 30px 0px rgba(0, 0, 0, 0.12);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	border-radius: 10px 10px 10px 10px;
	position:relative;
}
.platform .panel_platform .title{
	font-size:30px;
}
.platform .panel_platform .desc_top{
    text-transform: uppercase;
    font-weight: 300;
    color: #eb1c23;
    letter-spacing: 7px;
    font-size: 18px
}
.platform .panel_platform  .content{
	display:flex;
}
.platform .panel_platform  .content .item{
	width:100%;
	position:relative;
}
.platform .panel_platform  .content .item:first-child{
	max-width:500px;
}
.platform .panel_platform  .content .item img{
	max-width:100%;
	width:auto;
}
.platform .panel_platform  .content .item img.man{
	max-width:100%;
	width:auto;
	position:absolute;
	right: 0;
	max-width: 250px;
	animation: upDown 2s infinite alternate;
	animation-duration: 3s;	
	transition: all 0.5s;
}
.platform .panel_platform  .content .item img.line-left{
	position:absolute;
	right: 228px;
	animation: leftRight 2s infinite alternate;
	animation-duration: 3s;
}
.platform .panel_platform  .content .item img.line-right{
	position:absolute;
    right: -48px;
    top: -22px;
	animation: leftRight 2s infinite alternate;
	animation-duration: 4s;
	max-width: 116px;
}
.platform .panel_platform  .content .item img.logo{
	animation: upDown 2s infinite alternate;
	animation-duration: 3s;
	top: 35%;
    left: 35%;
	position:absolute;
}
.platform .panel_platform  .tools{
	display:flex;
	justify-content:center;
}
.platform .panel_platform  .tools a{
	font-size:40px;
	margin:0 20px;
	color: #4d5669;
}
.platform .panel_platform  .tools a:hover{
	color:#eb1c23;
}


/*
* Footer
*/
footer{
	/*background: -webkit-linear-gradient(-90deg, #f8473d 0%, #a31277 100%);
    background: -o-linear-gradient(-90deg, #f8473d 0%, #a31277 100%);
	background: linear-gradient(-90deg, #f8473d 0%, #a31277 100%);*/
	color:#fff;
	position: relative;
	background-color:#4f586a;
}
footer>svg{
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-top: -25px;
	display:none;
}
footer .footer-top .title{
	text-transform:uppercase;
	color:#fff;
}
footer .footer-top a{
	color:#fff;
}
footer .footer-top a i{
	font-size:16px;
	margin-right:8px;
}
footer .footer-top ul{
	padding:0;
	list-style:none;
	margin: 30px 0;
    line-height: 40px;
}
footer .footer-top img.logo{
	margin-bottom:15px;
}
footer .footer-top img.maps{
	max-width:100%;
	width:auto;
	margin-top:30px;
}
footer .footer-top{
	/*margin-top: 60px;*/
	margin-bottom: 30px;
	padding-top:60px;
}
footer .footer-bottom{
	padding:20px 0;	
}
footer .footer-bottom p{
	margin:0;
}
/*
* Mobile
*/
.mobile_app{
	/*background: linear-gradient(100deg, #f8473d, #a31277);*/
	background: linear-gradient(-187deg, #C86DD7 0%, #3023AE 100%);
	background: -webkit-linear-gradient(-81deg, #C86DD7 0%, #3023AE 100%);
    background: -o-linear-gradient(-88deg, #C86DD7 0%, #3023AE 100%);
	background-color:#4f586a;
	position:relative;
}
.mobile_app .apps_showcase{
	display:flex;
}
.mobile_app .apps_showcase .title{
	font-size:30px;
	color:#fff;
	text-transform:uppercase;
}
.mobile_app .apps_showcase{
	color:#fff;
}
.mobile_app .apps_showcase .item{
	width:100%;
	position:relative;
    margin: 60px 0px;
	color:#ffff;
}
.mobile_app .apps_showcase .item:last-child{
	text-align: center;
}

.mobile_app .apps_showcase .item img{
	position:absolute;
	top:-140px;
}
.mobile_app .apps_showcase .item  .tools{
	display:flex;
}
.mobile_app .apps_showcase .item  .tools a{
    border-radius: 35px;
    border: 1px solid #fff;
    margin-right: 15px;
    padding: 4px 50px;
    text-align: center;
	background-color:#fff;
	color: #4f586a;
}
.mobile_app .apps_showcase .item  .tools a:hover{
	background:none;
	color: #fff;
}

.mobile_app .apps_showcase .item  .tools a span:first-child{
	float:left;
	font-size:30px;
	margin-right:15px;
}
.mobile_app .apps_showcase .item  .tools a span:nth-child(2){
	float:left;
	font-size:12px;
}
.mobile_app .apps_showcase .item  .tools a span:nth-child(3){
	float:left;
}

/*
* Step for trade
*/
.step_start .panel_step_signin{
	max-width:1300px;
	margin-left:auto;
	margin-right:auto;
}
.step_start .panel_step_signin .title{
	font-size:30px;
}
.step_start .list_step{
	display:flex;
}
.step_start .list_step .item{
	width:100%;
}
.step_start .list_step .item:first-child{
	position:relative;
}
.step_start .list_step .item:first-child img{
	/*max-width:100%;
	width:auto;*/
}
.step_start .list_step .item:first-child img.img_1{
	position:absolute;
	left:0;
	animation: leftRight 2s infinite alternate;
	animation-duration: 3s;
}
.step_start .list_step .item:first-child img.img_2{
	position:absolute;
	left:0px;
	animation: leftRight 2s infinite alternate;
	animation-duration: 3s;
}
.step_start .list_step .item:first-child img.img_3{
	position:absolute;
	left: 110px;
	animation: upDown 2s infinite alternate;
	animation-duration: 2.3s;
}
.step_start .list_step .item:first-child img.img_4{
	position:absolute;
	left: 305px;
	top: 148px;
	animation: upDown 2s infinite alternate;
	animation-duration: 0s;
}
.step_start .list_step .item:first-child img.img_5{
    position: absolute;
    left: 399px;
    top: -13px;
	animation-duration: 3.5s;
	animation: upDown 2s infinite alternate;
}
.step_start .list_step .item:first-child img.img_6{
	animation: leftRight 2s infinite alternate;
	animation-duration: 3s;
	margin-left: -40px;
}
.step_start .list_step .item:first-child img.img_7{
	position:absolute;
	left: 468px;
    top: 150px;
	animation: upDown 2s infinite alternate;
	animation-duration: 4s;
}
.step_start .list_step .item:last-child{
	padding-left: 140px;
}
.step_start .list_step .item:last-child .desc{
	text-transform: uppercase;
    font-weight: 300;
    color: #eb1c23;
    letter-spacing: 7px;
    font-size: 18px;
}
.work-process-wrap{
    position: relative;
    max-width: 570px;
    margin-left: auto;
    margin-top: 62px;
}
.work-process-wrap .process-single-item{
	/*margin-bottom: 50px;*/
}
.work-process-wrap .process-icon-item {
    position: relative;
    margin-bottom: 1rem;
}
.work-process-wrap .process-icon-item .process-icon {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    height: 8.75rem;
    width: 8.75rem;
    line-height: 1;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 2.1875rem 0 rgba(119, 119, 120, 0.13);
    box-shadow: 0 0 2.1875rem 0 rgba(119, 119, 120, 0.13);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.work-process-wrap .process-icon-item .process-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.work-process-wrap .right-shape .d-flex{
	-ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important;
}
.work-process-wrap .process-icon-item svg:not(:root) {
    overflow: hidden;
}
.work-process-wrap .process-icon-item svg {
    position: absolute;
    left: 50%;
	top:50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    
}
.work-process-wrap .process-icon-item .process-icon i {
    font-size: 2.753rem;
	    color: #eb1c23;
}
/**
** animation for platform
**/
@keyframes upDown {
	0% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(10px);
	}
}

@keyframes leftRight {
	0% {
		transform: translateX(-10px);
	}
	100% {
		transform: translateX(10px);
	}
}

@keyframes scale1 {
	0% {
		transform: scale(0.8);
	}
	100% {
		transform: scale(1.1);
	}
}

@keyframes scale2 {
	0% {
		transform: scale(0.8);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(0.8);
	}
}

@keyframes scale3 {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(0.6);
	}
	100% {
		transform: scale(1);
	}
}


.icon_menu{
	    width: 100%;
    max-width: 40px;
}

/*
* Responsive
*/
@media (min-width: 992px) and (max-width: 1199.98px) {
	.container{
		max-width:100%;
	}
	header .main_header .logo{
		max-width: 122px
	}
	.platform .panel_platform {
		max-width: 1000px;
	}
	.step_start .list_step .item:first-child img.img_1{
		 max-width: 580px;
	}
	.step_start .list_step .item:first-child img.img_2{
		max-width: 88px;
	}
	.step_start .list_step .item:first-child img.img_3{
		max-width: 140px;
	}
	.step_start .list_step .item:first-child img.img_4{
		max-width: 229px;
		left: 249px;
	}
	.step_start .list_step .item:first-child img.img_5{
		max-width: 237px;
		left: 306px;
	}
	.step_start .list_step .item:first-child img.img_6{
		max-width: 570px;
	}
	.step_start .list_step .item:first-child img.img_7{
		max-width: 66px;
		left: 379px;
	}
	.mobile_app .apps_showcase .item img{
		max-width: 260px;
		position:relative;
		top: 0px;
	}
	.step_start .list_step .item:last-child {
		padding-left: 43px;
	}
}
@media (min-width: 992px){
	.icon_menu{
		display:none;
	}
}
@media (max-width: 767.98px) {
	header .main_header .menu .menu_main{
		display:none;
	}
	.icon_menu{
		display:block;
	}
	header .main_header .menu{
		justify-content: flex-end;
	}
	header .main_header .others_option{
		margin-right: 15px;
		width: 60%;
	}
	header .main_header .logo {
		max-width: initial;
	}
	header .main_header .others_option>li>a>span{
		display:none;
	}
	header .main_header .others_option>li>a i{
		font-size: 23px;
	}
	header .main_header .others_option>li>a{
	    display: flex;
		align-items: center;
	}
	.product .tabs-product{
		flex-direction: column;
	}
	.why_choice .service_item{
		flex-direction: column;
	}
	.why_choice .item:first-child{
		height: 300px;
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
	}
	.why_choice .item:first-child:after{
		display:none;
	}
	.platform .panel_platform .content{
		flex-direction: column;
	}
	.platform .panel_platform{
		padding:15px;
		margin-left: 5px;
		margin-right: 5px;
	}
	.platform .panel_platform .content .item:last-child{
		min-height: 500px;
	}
	.platform .panel_platform .content .item img.man{
		top:200px;
		max-width: 200px;
		left: 52px;
	}
	.platform .panel_platform .content .item img.line-right{
		max-width: 84px;
		top: 188px;
		right: -4px;
	}
	.platform .panel_platform .content .item img.line-left{
		max-width: 111px;
		top: 184px;
		right: 280px;
	}
	.platform .panel_platform .content .item img.logo{
		top: 36px;
	}
	.mobile_app .apps_showcase{
		flex-direction:column;
	}
	.mobile_app .apps_showcase .item:first-child{
		order:2;
	}
	.mobile_app .apps_showcase .item:last-child{
		order:1;
		max-height: 95px;
	}
	.mobile_app .apps_showcase .item img{
		position:relative;
		max-width: 200px;
	}
	.mobile_app .apps_showcase .item .tools a{
		padding: 5px 20px;
		margin-bottom: 15px;
		margin-right: 0;
	}
	.mobile_app .apps_showcase .item .tools a span:first-child{
		font-size: 25px;
		margin-right: 10px;
	}
	.mobile_app .apps_showcase .item .tools a span:nth-child(2){
		font-size: 11px;
	}
	.mobile_app .apps_showcase .item .tools a span:nth-child(3){
		font-size: 13px;
	}
	.step_start .list_step{
		flex-direction:column;
	}
	.step_start .list_step .item:first-child img.img_1{
		max-width:363px;
		display:none;
	}
	.step_start .list_step .item:first-child img.img_2{
		max-width: 56px;
	}
	.step_start .list_step .item:first-child img.img_3{
		max-width: 75px;
		left: 65px;
	}
	.step_start .list_step .item:first-child img.img_4{
		left: 134px;
		top: 48px;
		max-width: 154px;
	}
	.step_start .list_step .item:first-child img.img_5{
		max-width: 100px;
		left: 213px;
		top: 0px;
	}
	.step_start .list_step .item:first-child img.img_6{
		margin-left: -40px;
		max-width: 357px;
		margin-top: -34px;
	}
	.step_start .list_step .item:first-child img.img_7{
		max-width: 59px;
		left: 215px;
		top: 25px;
	}
	.step_start .list_step .item:last-child{
		padding-left:15px;
		padding-right:15px;
		margin-top: 100px;
	}
	.work-process-wrap .process-icon-item .process-icon{
		height: 5rem;
		width: 5rem;
	}
	.work-process-wrap .process-icon-item .process-icon i{
		font-size: 1.753rem;
	}
	.mobile_app .apps_showcase .item .tools{
	    flex-direction: column;
		max-width: 200px;
		margin: 0 auto;
	}
	.work-process-wrap .process-icon-item svg{
		display:none;
	}
	footer .footer-top img.logo{
		margin: 0 auto 30px;
		display: block;
	}
	header .main_header .others_option>li{
		margin: 0 10px;
	}
	header .main_header .others_option ul li a{
		display: flex;
		flex-direction: row-reverse;
		align-items:center;
	}
	header .main_header .others_option ul li a span{
		margin-right: 5px;
	}
	footer .footer-top .col-md-3:first-child{
		margin-bottom:30px;
	}
	.widget .widget-inner .col-md-6{
		margin-bottom:20px;
	}
}
@media (min-width: 768px) and (max-width: 991.98px) {
	header .main_header .others_option{
		margin-right: 15px;
		width: 60%;
	}
	header .main_header .menu{
		justify-content: flex-end;
	}
	header .main_header .menu .menu_main{
		display:none;
	}
	.icon_menu{
		display:block;
	}
	.step_start .list_step{
		flex-direction: column;
	}
	.step_start .list_step .item:last-child{
		padding-left: 0px;
		margin-top: 120px;
	}
	.mobile_app .apps_showcase {
		flex-direction: column;
	}
	.mobile_app .apps_showcase .item img{
		position: relative;
		top: -80px;
	}
	.mobile_app .apps_showcase .item:first-child{
		order:2;
		margin-top: 0;
	}
	.mobile_app .apps_showcase .item:last-child{
		order:1;
		margin: 0;
	}
	.platform .panel_platform .content{
		flex-direction: column;
	}
	.why_choice .service_item{
		flex-direction: column;
	}
	.why_choice .item:first-child{
		height: 500px;
	}
	.why_choice .item:last-child h2{
		text-align:center;
	}
	.why_choice .item:last-child .title{
		font-weight:bold;
	}
	.mobile_app .apps_showcase h5{
		/*text-align:center;*/
	}
	.mobile_app .apps_showcase .item .tools{
		max-width: 510px;
		text-align: center;
	}
	.work-process-wrap {
		max-width: 520px;
		margin-left: auto;
		margin-right: auto;
	}
	.step_start .list_step .item:last-child .desc{
		text-align:center;
	}
	.step_start .panel_step_signin .title{
		text-align:center;
	}
	.container{
		max-width:100%;
	}
	footer>svg{
		margin-top: -10px;
	}
}


/*
* Common css
*/
.pd-40{
	padding:40px 0;
}
.pd-60{
	padding:60px 0;
}
.pd-80{
	padding:80px 0;
}
.pd-80{
	padding:100px 0;
}

.mg-40{
	margin:40px 0;
}
.mg-60{
	margin:60px 0;
}
.mg-80{
	margin:80px 0;
}
.mg-100{
	margin:100px 0;
}

.wrapper_bg{
	background-color: #f5f6f9;
	overflow-x: hidden!important;
}
.color_up{
	color:#00be00;
}
.color_down{
	color:#eb1c23;
}



/*
* Menu mobile
*/

#sidebar {
    position: fixed;
    z-index: 9;
    height: 100%;
    width: 300px;
    background: #fff;
    overflow-x: hidden;
    overflow-y: scroll;
    margin: 0;
    left: -300px;
    top: 0;
    transition: left 300ms ease;
}

#sidebar #mobile-nav ul {
    margin: 0;
    padding: 0;
}

#sidebar #mobile-nav ul .nav-item {
    position: relative;
    border-top: 0px solid trandsparent;
    border-bottom: 0px solid trandsparent;
    float: left;
    list-style: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid #f5f5f5;
    overflow: hidden;
    cursor: pointer;
    -webkit-transform: scale(0.75, 0.75);
    transform: scale(0.75, 0.75);
    opacity: 0;
    transition: left 300ms linear 2s, opacity 100ms ease-in 600ms;
    transition: -webkit-transform 0.3s cubic-bezier(0.45, 1.8, 0.5, 0.75) 500ms;
    transition: transform 0.3s cubic-bezier(0.45, 1.8, 0.5, 0.75) 500ms;
    transition: transform 0.3s cubic-bezier(0.45, 1.8, 0.5, 0.75) 500ms, -webkit-transform 0.3s cubic-bezier(0.45, 1.8, 0.5, 0.75) 500ms;
    transition: border-top 40 ease 0ms, border-bottom 40 ease 0ms, box-shadow 150 ms ease-in;
}

#sidebar #mobile-nav ul .nav-item a {
    display: block;
    color: #333333;
    padding: 12px 10px;
    text-decoration: none;
    font-size: 16px;
}

#sidebar #mobile-nav ul .sub-nav {
    margin: 0;
    padding: 0;
}

#sidebar #mobile-nav ul .sub-nav li {
    position: relative;
    float: left;
    list-style: none;
    width: 100%;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
    border-top: 1px solid #e4e4e4;
}

#sidebar #mobile-nav ul .sub-nav {
    padding-left: 10px;
}

#sidebar.nav-slide {
    left: 0 !important;
}

#mobile-nav>ul>.item-slide {
    -webkit-transform: scale(1, 1) !important;
    transform: scale(1, 1) !important;
    opacity: 1 !important;
}

#mobile-nav>ul .arrowed:after {
    content: '+';
    width: 25px;
    height: 25px;
    color: #ffffff;
    float: right;
    background-color: #a7a7a7;
    text-align: center;
    font-size: 14px;
    align-items: center;
    display: flex;
    justify-content: center;
}

#mobile-nav>ul .selected:after {
    content: "-";
    width: 25px;
    height: 25px;
    color: #f1f1f1;
    font-size: 20px;
    top: 4px;
}

.sidebar_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 8;
    background: rgba(0, 0, 0, 0.2);
}