/*
Theme Name: TheDevCave Child
Template: thedevcave
Author: TheDevCave
Author URI: https://thedevcave.com
Theme URI: https://thedevcave.com
Description: TheDevCave is the last theme you'll ever need. Welcome to the future.
Version: 2.1.1
Requires at least: 6.1
Tested up to: 6.6.2
Requires PHP: 7.4
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: thedevcave
*/

:root {
	--button--arrow--black: url('data:image/svg+xml,<svg width="13" height="10" viewBox="0 0 13 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.5 5H1M12.5 5L8.5 0.5M12.5 5L8.5 9.5" stroke="black" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	--button--arrow--white: url('data:image/svg+xml,<svg width="13" height="10" viewBox="0 0 13 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.5 5H1M12.5 5L8.5 0.5M12.5 5L8.5 9.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	--button--arrow--primary: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 5H1M12.5 5L8.5 0.5M12.5 5L8.5 9.5' stroke='%23d600a7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	--button--arrow--orange: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 5H1M12.5 5L8.5 0.5M12.5 5L8.5 9.5' stroke='%23FF8F00' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Yoast Breadcrumbs */
.yoast-breadcrumbs span a { font-weight: 700; }


/* Hubspot Form Styles */
.hbspt-form fieldset { 
	width: 100%; 
	max-width: none !important; 
	margin-bottom: var(--wp--preset--spacing--small) !important; 
}
.hbspt-form .hs-form-field :is(input, textarea, select) {
	background: rgba(193, 193, 193, 0.1);
	border: 0;
	border-bottom: 2px solid rgba(193, 193, 193, 0.25);
	border-image-slice: 1;
	width: 100% !important;
	max-width: none;
	padding: 12px 16px;
	margin: 0;
	outline: none;
}
.hbspt-form .hs-form-field select {
	padding: 12px 40px 12px 15px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23000' aria-hidden='true' focusable='false'%3E%3Cpath d='M1.50002 4L6.00002 8L10.5 4' stroke-width='1.5'%3E%3C/path%3E%3C/svg%3E");
	background-size: 12px 12px;
	background-repeat: no-repeat;
	background-position: right 14px center;
	appearance: none;
}
.hbspt-form .hs-form-field :is(input, textarea, select):focus {
	/* border-bottom-color: var(--wp--preset--color--primary); */
	border-image-source: var(--wp--preset--gradient--rfh-primary-gradient);
	box-shadow: none;
}
.hbspt-form .hs-form-field label {
	font-size: 15px;
	margin-bottom: 5px;
}
.hbspt-form .hs-form-field label .hs-form-required { color: var(--wp--preset--color--secondary); }
.hbspt-form .hs-form-field .hs-error-msgs {
	display: block;
	margin-top: 5px;
	margin-bottom: 0;
	padding: 0;
	font-size: 13px;
	color: var(--wp--preset--color--secondary);
	list-style-type: none;
}
.hbspt-form .hs-form-field .hs-error-msgs label { font-size: inherit; }
.hbspt-form .hs-submit input[type="submit"] {
	background-color: transparent;
	color: var(--wp--preset--color--black);
	outline: 2px solid var(--wp--preset--color--primary);
	border: none;
	border-radius: 50px;
	outline-offset: -1px;
	outline-style: solid;
	outline-width: 1px;
	padding: 10px 20px;
	align-content: center;
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	height: 100%;
	text-align: center;
	word-break: break-word;
	transition: 0.2s all ease-in-out;
	text-decoration: none;
}
.hbspt-form .hs-submit input[type="submit"]::after {
	content: '';
	background-image: var(--button--arrow--black);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 13px 10px;
	display: inline-block;
	width: 13px;
	height: 10px;
	margin-left: 10px;
	transition: 0.2s all ease-in-out;
	position: relative;
}
.hbspt-form .hs-submit input[type="submit"]:hover {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
}
.hbspt-form .hs-submit input[type="submit"]:hover::after {
	background-image: var(--button--arrow--white);
	transform: translateX(3px);
}