.is-style-round-corners {
	border-radius: 5px;
}

.is-style-top-left-style,
.is-style-top-right-style,
.is-style-bottom-right-style,
.is-style-bottom-left-style {
	position: relative;
}

.is-style-top-left-style::before {
    content: "";
    display: block;
    width: 130px;
    height: 130px;
    background-color: var(--wp--preset--color--blue);
    border-radius: 5px;
    position: absolute;
    top: -15px;
    left: -15px;
}

.is-style-top-right-style::before {
    content: "";
    display: block;
    width: 130px;
    height: 130px;
    background-color: var(--wp--preset--color--blue);
    border-radius: 5px;
    position: absolute;
    top: -15px;
    right: -15px;
}

.is-style-bottom-left-style::after {
    content: "";
    display: block;
    width: 130px;
    height: 130px;
    background-color: var(--wp--preset--color--blue);
    border-radius: 5px;
    position: absolute;
    bottom: -15px;
    left: -15px;
}

.is-style-bottom-right-style::after {
    content: "";
    display: block;
    width: 130px;
    height: 130px;
    background-color: var(--wp--preset--color--blue);
    border-radius: 5px;
    position: absolute;
    bottom: -15px;
    right: -15px;
}

.is-style-top-left-style img,
.is-style-bottom-right-style img,
.is-style-bottom-left-style img,
.is-style-top-right-style img {
	border-radius: 5px;
    position: relative;
    z-index: 99;
}