.wk-forms-editor{
	&__menu{
		background-color: $gray_50;
		padding: 15px;
		border-top-left-radius: 5px;
		border-top-right-radius: 5px;
		border-bottom: 2px solid $gray_100;
	}
	&__container{
		background-color: $gray_50;
		border-bottom-left-radius: 5px;
		border-bottom-right-radius: 5px;
	}
	&__select-options{
		max-height: 100px;
		overflow-y: auto;
		&::-webkit-scrollbar {
            width: 5px;
        }
           
        &::-webkit-scrollbar-track {
            background-color: transparent;
        }
           
        &::-webkit-scrollbar-thumb {
            background-color: #a0aec0;
            // outline: 1px solid #718096;
            border-radius: 3px;
        }
		button{
			margin-bottom: 3px;
		}
			
		
	}
	&__block{
		padding: 15px;
		position: relative;
		transition: 0.2s all ease-in-out;
		&:last-child{
			border-bottom-left-radius: 5px;
			border-bottom-right-radius: 5px;
		}
		&:hover{
			background-color: $gray_100;
			cursor: pointer;
		}
		&__expand{
			color: $secondary;
			margin-left: 5px;
			font-weight: $font-bold;
		}
		&__expanded{
			margin-top: 0px;
			padding-left: 25px;
		}
		&-cover{
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			z-index: 200;
			
			.icon{
				opacity: 0;
				pointer-events: none;
				position: absolute;
				left: 50%;
				top: 50%;
				transform: translate(-50%, -50%);
				color: $info;
				font-size: 30px;
				transition: 0.2s all ease-in-out;
			}
			&:hover{
				cursor: pointer;
				.icon{
					
					z-index: 202;
					opacity: 1;
					pointer-events: visible;
				}
			}
			
		}
	}
}