/**********/
/* FLYOUT */
/**********/
	.flyout_image
    {
        width:100%;
        height:500px;
    }
    
    .flyout_item
    {
    	position:fixed;
        top:0;
        right:0;
        height:100%;
        background: #fff;
        z-index:999999;
        overflow-y: auto;
        overflow-x: hidden;
        transition: all 0.3s ease;
        visibility:hidden;
    }
	body.admin-bar .flyout_item {top:32px}
    .flyout_content_wrapper .fl-row-content-wrap
    {
        padding-left:40px;
        padding-right:40px;
    }
    
    .flyout_item.active {
        right:0 !important;
        visibility:visible;
    }
    
    .flyout_close {
        padding: 15px 20px;
        background: #44841a;
        position: fixed;
        color: #fff;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.5s ease;
        right: -100px;
        font-family: cursive;
        z-index: 9;
        border-radius:0;
        border-width:0;
    }
    .flyout_close:hover {
        border-width:0;
    }
    .flyout_close:active,
    .flyout_close:focus{
        position:fixed;
        border-width:0;
        top:initial;
    }
    .flyout_close:focus {
        outline-style: auto;
        outline-width: thick;
        outline-offset: 0;
    }
	.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: 99999;
		transition: all 0.2s ease;
		opacity:0;
		pointer-events: none;
		
	}
	.flyout_overlay.active {
		opacity:1;
		pointer-events: initial;
	}

	
	
	
	