/**
 * Note that these styles are loaded *before* editor styles, so that
 * editor-specific styles using the same selectors will take precedence.
 */

.wp-block-onlineoptimism-gutenberg-blocks-oo-flexbox-block {
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.flexbox-text {
	padding: 2rem;
	flex-basis: 60%;
	flex-shrink: 1;
}

.full-size-image {
	display: flex;
	align-items: center;
	justify-content: center;
    order: 2;
    flex-basis: 40%;
    flex-shrink: 0;
    text-align: center;
}

.full-size-image img {
	max-width: 100%;
}

.has-black-background-color {
     background-color: #2a2a2a;
 }
.has-black-color {
     background-color: #2a2a2a;
}
.has-gray-background-color {
     background-color: #7a7a7a;
}
.has-gray-color {
     color: #7a7a7a;
}

@media screen and (max-width: 757px){
	.wp-block-onlineoptimism-gutenberg-blocks-oo-flexbox-block  {
		display: block;
	}

	.full-size-image {
		margin-left: auto;
		margin-right: auto;
	}
}