/**********/
/* FLYOUT */
/**********/
	.flyout_image
    {
        width:100%;
        height:500px;
    }
    
    .flyout_item
    {
    	position:fixed;
        top:0;
        right:0;
        height:100%;
        background: #fff;
        z-index:999;
        overflow-y: auto;
        overflow-x: hidden;
        transition: all 0.3s ease;
    }
	body.admin-bar .flyout_item {top:32px}
    .flyout_content_wrapper
    {
        /* padding:40px; */
    }
    
    .flyout_item.active {right:0% !important;}
    
    .flyout_close {
        padding:20px;
        background:#000;
        position:fixed;
		color:#fff;
		font-weight:bold;
		cursor:pointer;
		transition: all 0.5s ease;
        right:-100px;
        z-index: 9;
    }
	.flyout_close.active {right:initial}
	
	.flyout_active {
		overflow:hidden !important;
		margin-right:16px;
	}
	
	.flyout_overlay {
		position: fixed;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.85);
		z-index: 998;
		transition: all 0.2s ease;
		opacity:0;
		pointer-events: none;
		
	}
	.flyout_overlay.active {
		opacity:1;
		pointer-events: initial;
    }
    

	
	
	
	