/**********/
/* FLYOUT */
/**********/
	.flyout_image {
        width:100%;
        height:500px;
    }
	.flyout_image img
    {
        width:100%;
        height:100%;
        object-fit:cover
    }
    
    .flyout_item
    {
    	position:fixed;
        visibility:hidden;
        right:0;
        top:0;
        height:100%;
        background: #fff;
        z-index:999;
        overflow-y: auto;
        overflow-x: hidden;
        transition: all 0.3s ease;
        cursor:auto;
    }
	body.admin-bar .flyout_item {top:32px}
    .flyout_content_wrapper
    {
        padding:40px;
    }
    
    .flyout_item.active {
        right:0% !important;
        visibility:visible;
    }
    
    .flyout_close {
        padding:20px;
        background:#000;
        position:fixed;
		color:#fff;
		font-weight:bold;
		cursor:pointer;
		transition: all 0.5s ease;
		right:-100px;
    }
	.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: 999;
		transition: all 0.2s ease;
		opacity:0;
		pointer-events: none;
		
	}
	.flyout_overlay.active {
		opacity:1;
		pointer-events: initial;
	}

	
	
	
	