.is-style-btn-2 .wp-element-button {
	background: transparent;
	border-color: var(--wp--preset--color--1);
	color: var(--wp--preset--color--4);
	padding-left: 90px;
}

.is-style-btn-2 .wp-element-button:before {
	border-color: var(--wp--preset--color--1);
	top: 4px;
	right: 4px;
	bottom: 4px;
	left: 4px;
	transition: all 0.3s ease-in-out;
}

.is-style-btn-2 .wp-element-button:after {
	content: '';
	display: block;
	background: url(../images/logo-icon2.png) no-repeat left top;
	position: absolute;
	background-size: contain;
	width: 40px;
	height: 40px;
	left: 27px;
	top: 50%;
	transform: translateY(-50%);
}

.is-style-btn-2 .wp-element-button:hover {
	color: var(--wp--preset--color--2);
	border-color: var(--wp--preset--color--2);
}

.is-style-btn-2 .wp-element-button:hover:before {
	border-color: var(--wp--preset--color--2);
}

.is-style-btn-2 .wp-element-button:hover:after {
	filter: brightness(0) saturate(100%)
}

.is-style-btn-wheel .wp-element-button:after {
	content: '';
	display: block;
	background: url(../images/cogwheel.png) no-repeat center 2px;
	position: absolute;
	background-size: contain;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(0deg);
	opacity: 0;
	pointer-events: none;
}

.is-style-btn-wheel.show-cross .wp-element-button:after {
    animation: fadeIn 0.5s ease forwards;
}

.is-style-btn-wheel.spin .wp-element-button:after {
    animation: spin 2.5s linear infinite;
    opacity: 1;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes spin {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(180deg);
	}
}

/*
.is-style-btn-2 .wp-block-button__link {
	background-color: var(--wp--preset--color--1);
	border-color: var(--wp--preset--color--1);
	color: var(--wp--preset--color--2);
}

.is-style-btn-2 .wp-block-button__link:hover,
.is-style-btn-2 .wp-block-button__link:focus {
	background-color: var(--wp--preset--color--2);
	border-color: var(--wp--preset--color--2);
	color: var(--wp--preset--color--1);
}
*/

.is-style-text-link .wp-block-button__link {
	background: none;
	border: none;
	border-radius: 0;
	color: var(--wp--preset--color--5);
	font-size: var(--wp--preset--font-size--paragraph-1);
	font-family: var(--wp--preset--font-family--1);
	font-weight: 400;
	padding: 0;
	min-width: auto;
	text-decoration: underline;
}

.is-style-text-link .wp-block-button__link:hover {
	text-decoration: none;
	background: none;
}

.is-style-text-link .wp-block-button__link.wp-element-button::before {
	display: none;
}

.is-style-text-link.transparent-btn .wp-block-button__link {
	border: 1px solid var(--wp--preset--color--4);
	padding: 12px 15px;
	text-decoration: none;
}

.is-style-text-link.transparent-btn .wp-block-button__link:hover {
	color: var(--wp--preset--color--1);
	text-decoration: underline;
}

.wp-block-buttons .is-style-btn-full {
	width: 100%;
}

.is-style-btn-full .wp-element-button {
	min-width: 100%;
}

.is-style-btn-small .wp-element-button {
	min-width: 175px;
}