/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/*
body, html, * {
    outline: 1px solid red;
}*/



.custom-preheading {
	border-radius: var(--radius-lg, 10px);
border: 1px solid var(--Light-Stroke, #33455C);
background: var(--Dark-Blue-800, #222F3F);
box-shadow: -2px -2px 2px 0px rgba(0, 0, 0, 0.36) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(255, 255, 255, 0.00));
}

.btn-custom {
	position: relative;
	border-radius: 12px !important;
background: #5E54B5;
box-shadow: 
  0px 0px 0px 1px rgba(10, 13, 18, 0.18) inset, 
  0px -2px 0px 0px rgba(10, 13, 18, 0.05) inset, 
	0px 1px 2px 0px rgba(10, 13, 18, 0.05);}

.btn-custom::before {
	  content: '';
  position: absolute;
  top: 2px; /* Border width */
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 12px; /* Adjust for inner rounding */
  border: 2px solid rgba(255, 255, 255, 0.12);
  z-index: -1;
}