.gutenberg-galleries {
	--gutenberg-button--height: 61px;
}
.gutenberg-galleries .row:first-child {
	--bs-gutter-x: 20px !important;
	--bs-gutter-y: var(--bs-gutter-x) !important;
}
.gutenberg-galleries .loader > span {
	background-image: url(/wp-content/uploads/2023/03/lerncenter_icon_var_e.svg);
    background-size: contain;
    width: 32px;
    height: 32px;
    display: block;
	animation: galleries_loading 2s linear infinite;
}
.gutenberg-galleries .loader {
	opacity: 0;
	height: 61px;
	display: flex;
    align-items: center;
}
@keyframes galleries_loading { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}