
.containerSideBar {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 20px;
	width: auto;
	background-color: transparent !important;
	pointer-events: none;
	overflow: hidden;
	z-index: 100;
}
.floatingSideBarPortlets {
	position: absolute;
	height: 100vh;
	left: calc(100% - 40px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.floatingSideBarPortlets:not(.ready) {
	visibility: hidden;
}
.floatingSideBarPortlets .skinGroup{
	margin-top: 10px;
}
.floatingSideBarPortlets .skinGroup:first-child{
	margin-top: 0px;
}
.floatingSideBarPortlets .sideBarItemSeparator{
	position: relative;
	width: 26px;
	margin: -1px 7px 0px 7px;
	border-top: 1px solid rgba(0,0,0,0.45);
	z-index: 2;
}
.floatingSideBarPortlets .skinGroup > .sideBarItemSeparator:last-child{
	display: none;
}
.floatingSideBarPortlets .portlet {
	width: auto;
	max-width: 100%;
	position: relative;
	pointer-events: all;
}
.floatingSideBarPortlets.ready .portlet {
	overflow: hidden;
}
.floatingSideBarPortlets:not(.ready) .portlet {
	height: auto !important;
	width: auto !important;
}
.floatingSideBarPortlets.ready .portlet {
	transition: transform 0.3s ease-out, height 0.3s ease-out;
}
/* .floatingSideBarPortlets.ready .portlet:first-child {
	border-top: 0px;
} */
.floatingSideBarPortlets .portlet.clickable:hover {
	opacity: 1 !important;
}
.floatingSideBarPortlets .portlet.clickable .fepFrameBorder::after {
	pointer-events: none;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	content: "";
	background-color: #fff;
	opacity: 0;
	z-index: 1;
	transition: opacity 0.3s ease-out;
}
.floatingSideBarPortlets .portlet.clickable:hover .fepFrameBorder::after {
	opacity: 0.1;
}
.floatingSideBarPortlets .viewerTemplate:not(.hasImage).hasTitle .title {
	transform: translateY(100%) rotate(-90deg);
	transform-origin: top left;
	margin: 0 !important;
	padding: 0 15px 0 15px;
}
/*
.floatingSideBarPortlets .viewerTemplate:not(.hasImage).hasTitle::before {
	content: "";
	display: block;
	padding-bottom: 100%;
}
*/
.floatingSideBarPortlets .portlet.editing,
.floatingSideBarPortlets .portlet.hasTitle.hasImage:hover,
.floatingSideBarPortlets .portlet.hasContent:hover {
	transform: translate(40px) translateX(-100%);
}
.floatingSideBarPortlets .portlet .viewerTemplate {
	min-height: 40px;
	display: flex;
	align-items: flex-start;
}
.floatingSideBarPortlets .portlet .fepFrameInfo {
	display: none;
}
.floatingSideBarPortlets .portlet .fepFrameSubInfo {
	visibility: hidden;
	left:0;
}
.floatingSideBarPortlets .portlet .iconWrapper,
.floatingSideBarPortlets .portlet .responsiveImageWrapper {
	float: none;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	margin: 0;
	width: 40px;
	height: 40px;
}		
.floatingSideBarPortlets .portlet .iconWrapper .fepIcon {
	font-size: inherit;
}		
.floatingSideBarPortlets .portlet .title {
	line-height: 40px;
	white-space: nowrap;
	margin: 15px 30px 15px 0;
	padding: 0;
}		
.floatingSideBarPortlets .portlet.hasImage .title {
	margin: 0 30px 0 5px !important;
}	
.floatingSideBarPortlets .portlet .viewerTemplate .contentWrapper {
	width: 300px;
	padding: 10px 15px 15px 0;
}
.floatingSideBarPortlets-editMode .fepSortableHandle,
.floatingSideBarPortlets-editMode .ui-sortable-handle {
	z-index: 2;
}
.floatingSideBarPortlets-editMode .fepSortableHandle:hover,
.floatingSideBarPortlets-editMode .ui-sortable-handle:hover{
	opacity: 0.4;
	cursor: move;
}
.sidebarItemAdd{
	border: 1px dashed #7C7C7C;
	box-sizing: border-box;
	background-color: white;
	color: #7C7C7C;
	transition: border-color 0.2s ease-out;
}
.sidebarItemAdd:hover{
	/* border-color: #C50022; */
	border-style: solid;
	border-color: #C50022;
	background-color: #F8E0E4;
	color: #C50022;
}
.sidebarItemClose{
	background-color: #F0F0F0;
	color: #C50022;
}
.sidebarItemClose:hover{
	color: #7C7C7C;
}
@media (min-width: 1270px) {
	.floatingSideBarPortlets {
		left: calc(100% - 50px);
	}
	.floatingSideBarPortlets .sideBarItemSeparator{
		width: 36px;
	}
	.floatingSideBarPortlets .portlet .viewerTemplate {
		min-height: 50px;
	}

	.floatingSideBarPortlets .portlet .iconWrapper,
	.floatingSideBarPortlets .portlet .responsiveImageWrapper {
		width: 50px;
		height: 50px;
	}	
	.floatingSideBarPortlets .portlet .title {
		line-height: 50px;
	}
	.floatingSideBarPortlets .portlet.editing,
	.floatingSideBarPortlets .portlet.hasTitle.hasImage:hover,
	.floatingSideBarPortlets .portlet.hasContent:hover {
		transform: translate(50px) translateX(-100%);
	}

}