.theme-button {
	display: inline-block;
	border-radius: 0;
	font-size: 0.8125rem;
	text-transform: uppercase; 
	font-weight: 500;
	letter-spacing: 0.09em;
	text-align: center;
	padding: 1em;
	min-width: 148px;
	cursor: pointer;
	transition: all .3s;
}

.theme-button.blue-mod {
	background: var(--theme-lt-blue);
	color: #fff;
	padding: 1em 1em calc(1em + 7px);
	border: none;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), 18px calc(100% - 10px), 0 100%);
}

.theme-button.blue-mod:hover {
	background-color: #fff;
	color: var(--theme-lt-blue);
}

.theme-button.white-outline-mod {
	background-image: url("data:image/svg+xml,%3Csvg width='150' height='54' viewBox='0 0 150 54' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1H149L148.996 41.9789H15.0907L1 52V1Z' stroke='white' stroke-width='2' stroke-miterlimit='10'/%3E%3C/svg%3E");
	padding: 1.1em 1em 1.5em 1em;
	background-size: 100% 100%;
	color: #fff;
}

.theme-button.white-outline-mod:hover {
	background-image: url("data:image/svg+xml,%3Csvg width='150' height='54' viewBox='0 0 150 54' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1H149L148.996 41.9789H15.0907L1 52V1Z' stroke='white' stroke-width='2' stroke-miterlimit='10'/%3E%3C/svg%3E");
	color: var(--theme-lt-blue);
}

.theme-button.lt-blue-outline-mod {
	background-image: url("data:image/svg+xml,%3Csvg width='150' height='54' viewBox='0 0 150 54' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1H149L148.996 41.9789H15.0907L1 52V1Z' stroke='%233CA4D4' stroke-width='2' stroke-miterlimit='10'/%3E%3C/svg%3E");
	padding: 1.1em 1em 1.5em 1em;
	background-size: 100% 100%;
	color: #fff;
}

.theme-button.lt-blue-outline-mod.lt-blue-text-mod {
	color: var(--theme-lt-blue);
}

.theme-button.lt-blue-outline-mod:hover {
	background-image: url("data:image/svg+xml,%3Csvg width='150' height='54' viewBox='0 0 150 54' fill='%233CA4D4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1H149L148.996 41.9789H15.0907L1 52V1Z' stroke='%233CA4D4' stroke-width='2' stroke-miterlimit='10'/%3E%3C/svg%3E");
	color: #fff;
}

.theme-button.dk-blue-outline-mod {
	background-image: url("data:image/svg+xml,%3Csvg width='150' height='54' viewBox='0 0 150 54' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1H149L148.996 41.9789H15.0907L1 52V1Z' stroke='%23001C33' stroke-width='2' stroke-miterlimit='10'/%3E%3C/svg%3E");
	padding: 1.1em 1em 1.5em 1em;
	background-size: 100% 100%;
	color: var(--theme-dk-blue);
}

.theme-button.dk-blue-outline-mod:hover {
	background-image: url("data:image/svg+xml,%3Csvg width='150' height='54' viewBox='0 0 150 54' fill='%23001C33' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1H149L148.996 41.9789H15.0907L1 52V1Z' stroke='%23001C33' stroke-width='2' stroke-miterlimit='10'/%3E%3C/svg%3E");
	color: #fff;
}

.wp-block-button__link.wp-element-button {
	background: transparent !important;
	border: 1px solid var(--theme-lt-blue) !important;
	color: var(--theme-lt-blue) !important;
	font-weight: 500;
	font-size: 1rem;
	padding: 10px 1.5em 6px;
	transition: all .3s;
}

.wp-block-button__link.wp-element-button:hover {
	background: var(--theme-lt-blue) !important;
	color: #fff !important;
}

.theme-pill-button {
	display: inline-block;
	color: var(--theme-lt-blue);
	font-size: 1rem;
	font-weight: 500;
	padding: 14px 37px 12px;
	border: 2px solid var(--theme-lt-blue);
	border-radius: 27px;
	transition: all .3s;
}

.theme-pill-button.active,
.theme-pill-button:hover {
	background: var(--theme-lt-blue);
	color: #fff;
}

.theme-pill-button.disabled,
.theme-pill-button.disabled:hover {
	color: #ccc;
	border-color: #ccc;
	background-color: transparent;
	cursor: default;
	display: none;
}