.right-to-left{
	position: fixed;
	left: 25px;
	top: 25%;
	cursor: pointer;
	transition: all .3s ease;
	display: flex;
	overflow: hidden;
	
	i{
		font-size: 26px;
		margin-right: 15px;
		transition: all .3s ease;
	}
	.text{
		transition: width .3s ease;
		display: inline-block;
		width: 0;
		overflow: hidden;
		span{
		position: relative;
    	top: 2px;
		font-size: 16px;
		white-space: nowrap;
		transition: width .3s ease;
		&.disable-active{
			display: none;
		}
	}
	&:hover{
		span{
			color: #ee9051;
		}
	}
	}
	
	&:hover{
		overflow: unset;
		i{
			color: #ee9051;
		}
		.text{
			width: 140px;
		}
		
	}
}