/*
 Theme Name:   Wild Fox Events Child Theme
 Theme URI:    https://petenginemarketing.com
 Description:  Base Child Theme for Divi
 Author:       Pet Engine Marketing
 Author URI:   https://petenginemarketing.com
 Template:     Divi
 Version:      1.0.0
*/

/**To get started add your custom CSS below**/

/*Navigation Menu Hover Styles*/
/* Change these values to edit line appearance and position */
:root {
  --BottomOffset: -5px;
  --LineHeight: 5px;
  --LineColor: #367675;
}

.wf-menu-style ul.et-menu>li>a {
	position: relative;
	z-index: 1;
}
.wf-menu-style ul.et-menu>li>a:before {
    position: absolute;
    content: '';
    display: block;
    z-index: -1;
    background: var(--LineColor);
    width: 0;
    height: var(--LineHeight);
    bottom: var(--BottomOffset);
	border-radius:var(--LineHeight);
    left: 50%;
    transition: 0.4s cubic-bezier(0.25, 0.1, 0, 2.02);
}

.wf-menu-style ul.et-menu>li>a:hover:before {
    width: calc(100% + var(--LineHeight));
    left: calc(var(--LineHeight) / -2);
}

/*set the Divi menu dropdown auto width*/
@media only screen and (min-width: 981px) {
	.nav li ul {
		width: fit-content;
		display: flex;
		flex-direction: column;
	}

	.nav li li {
		white-space: nowrap;
	}

	.nav li li a {
		width: auto !important;
	}
}
/*Update Submenu Icon Positioning*/
.et_pb_menu_2_tb_header ul.et_mobile_menu li.menu-item-has-children .mobile-toggle {
  position: absolute !important;
  right: 10px !important;
  left: auto !important;
  top: 25% !important;
  transform: translateY(-25%) !important;
}

/*Fluent Form Button Styles*/
form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style) {
    background-color: var(--gcid-primary-color) !important;
    color: var(--gcid-3ykcpihztl);
}

form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style):hover {
    background-color: hsl(from var(--gcid-primary-color) calc(h + 0) calc(s + 0) calc(l + -11)) !important;
}
.ff-default .ff_btn_style:focus, .ff-default .ff_btn_style:hover {
    opacity: 1 !important;
    outline: 0;
    text-decoration: none;
}

.ff-default .ff_btn_style {
    border: 4px solid var(--gcid-primary-color);
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
	letter-spacing: 1px;
    padding: 8px 20px;
    position: relative;
    text-align: center;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
	box-shadow: 6px 7px 0px 0px var(--gcid-md69wm025m);
    align-items: center;
	text-transform: uppercase !important;
}
.ff-default .ff_btn_style:hover {
	border: 4px solid hsl(from var(--gcid-primary-color) calc(h + 0) calc(s + 0) calc(l + -11)) !important;
}
