/*
Theme Name:    Website Audit Landing Page by CKP Creative
Description:   Beaver Builder Child Theme for Website Audit Landing Page by CKP Creative
Version:       2.0.1
Author:        CKP Creative
Author URI:    https://www.ckpcreative.com.au/
Template:      bb-theme
License:       GNU General Public License v2 or later
License URI:   http://www.gnu.org/licenses/gpl-2.0.html


==========================================================================================
TABLE OF CONTENTS
==========================================================================================
1.0     AT-RULES
        1.1     Fonts
        1.2     Animations
2.0     RESET
3.0     REUSABLE CLASSES
4.0     LAYOUT AND DESIGN
        4.1     Common styles
                4.1.1     Rows
                4.1.2     Accordions
                4.1.3     Carousels
                4.1.4     Forms
                4.1.5     Popups
                4.1.6     Tabs
                4.1.7     Others
        4.2     Header
                4.2.1     Rows
                4.2.2     Branding
                4.2.3     Menu
                4.2.4     Others
        4.3     Content
                4.3.1     Rows
                4.3.2     Forms
                4.3.3     Popups
                4.3.4     Carousels
                4.3.5     Others
        4.4     Footer
                4.4.1     Rows
                4.4.2     Branding
                4.4.3     Menu
                4.4.4     Others
        4.5     Others
5.0     RESPONSIVE
        5.1     Large screens only (min-width: 993px)
        5.2     Medium and small screens (max-width: 992px)
        5.3     Medium screens only (min-width: 769px and max-width: 992px)
        5.4     Medium and large screens (min-width: 769px)
        5.5     Small and smaller screens (max-width: 768px)
        5.6     Small screens only (min-width: 481px and max-width: 768px)
        5.7     Gravity Forms Desktop (min-width: 641px)
        5.8     Gravity Forms Responsive (max-width: 640px)
        5.9     Smaller screens only (max-width: 480px)
==========================================================================================
*/

/**=======================================================================================
 * 1.0  AT-RULES
 * ---------------------------------------------------------------------------------------
 * At-rules are CSS statements that instruct CSS how to behave.
 *
 * Only include the following at-rules in this area:
 * - @font-face: Describes the aspect of an external font to be downloaded
 * - @keyframes: Describes the aspect of intermediate steps in a CSS animation sequence
 =======================================================================================*/

/**
 * 1.1  FONTS
 * ---- Custom fonts to apply to the website
 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

/**
 * 1.2  VARIABLES
 * ---- Custom variables that can be used within the stylesheet
 */
:root {
	--containerWidth: 1176px;
}

/**
 * 1.3  ANIMATIONS
 * ---- @keyframes at-rules for CSS animations
 */

/* 1.3.1  Slide down effect */
@-webkit-keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}

	100% {
		opacity: 0.9;
		transform: translateY(0);
	}
}

@-moz-keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}

	100% {
		opacity: 0.9;
		transform: translateY(0);
	}
}

@keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}

	100% {
		opacity: 0.9;
		transform: translateY(0);
	}
}

/* 1.3.2  Spinner */
@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/**=======================================================================================
 * 2.0  RESET
 * ---------------------------------------------------------------------------------------
 * Set default styles for elements
 =======================================================================================*/
.fl-page p {
	margin-bottom: 1.5em;
}

.fl-page p:last-child {
	margin-bottom: 0;
}

.fl-rich-text ul {
	padding-left: 0;
	list-style: none;
}

.fl-rich-text ul li {
	position: relative;
	padding-left: 30px;
}

.fl-rich-text ul li::before {
	content: "";
	height: 8px;
	width: 8px;
	position: absolute;
	top: 9px;
	left: 0;
	background: #EA0952;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}


/**=======================================================================================
 * 3.0  REUSABLE CLASSES
 * ---------------------------------------------------------------------------------------
 * CSS classes that can be re-used althroughout the website
 =======================================================================================*/

.fl-builder-content .btn-gradient a.fl-button {
	background: linear-gradient(to right, #B412A1, #E70A52);
}

.ckp-push-right>.fl-node-content {
	position: relative;
	padding-right: calc(((100vw - var(--scrollbarWidth)) - var(--containerWidth)) / 2);
}

.wave-top>.fl-row-content-wrap,
.wave-bottom>.fl-row-content-wrap {
	position: relative;
}

.wave-top .fl-row-content,
.wave-bottom .fl-row-content {
	position: relative;
	z-index: 1;
}

.wave-top>.fl-row-content-wrap::before {
	content: "";
	height: 70%;
	background: url(assets/img/wave-top.svg) center top no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 0;
}

.wave-bottom>.fl-row-content-wrap::after {
	content: "";
	height: 70%;
	background: url(assets/img/wave-bottom.svg) center bottom 10px no-repeat;
	background-size: 100% auto;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}

.wave-bottom-center>.fl-row-content-wrap::after {
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
}

/**=======================================================================================
 * 4.0  LAYOUT AND DESIGN
 * ---------------------------------------------------------------------------------------
 * General and specific CSS styles for layouts, pages, and/or features
 =======================================================================================*/

/**
 * 4.1  COMMON STYLES
 * ---- Styles that are commonly used on multiple pages
 */

/* 4.1.1  Rows */

/* 4.1.2  Accordions */

/* 4.1.3  Carousels */

/* 4.1.4  Forms */

/* 4.1.4.1  Gravity Forms */
.fl-module .gform_wrapper .gform_validation_errors {
	background: #c02b0a;
	border: 0;
	margin-bottom: 20px;
}

.fl-module .gform_wrapper .gform_validation_errors>h2 {
	color: #FFF;
}

.fl-module .gform_wrapper div.gfield {
	padding: 0;
	margin-top: 0;
}

.fl-module .gform_wrapper .gfield.gfield_error {
	background: none;
	border: 0;
}

.fl-module .gform_wrapper .top_label .gfield_label {
	line-height: normal;
}

.fl-module .gform_wrapper .gfield_required {
	color: inherit;
}

.fl-module .gform_wrapper .gfield textarea {
	resize: vertical;
}

.fl-module .gform_wrapper.gravity-theme .gfield_validation_message,
.fl-module .gform_wrapper.gravity-theme .validation_message {
	background: none;
	padding: 0;
	border: 0;
	margin-top: 5px;
}

.gform_ajax_spinner {
	margin-left: 20px;
	border: 4px solid rgba(145, 125, 125, 0.3);
	border-left: 4px solid rgba(110, 73, 217, 0.7);
	animation: spinner 1.1s infinite linear;
	border-radius: 50%;
	width: 30px;
	height: 30px;
}

/* 4.1.4.2  UABB Gravity Forms */
.fl-module .uabb-gf-style input[type] {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* 4.1.4.3  Powerpack Gravity Forms */

/* 4.1.5  Popups */

/* 4.1.6  Tabs */

/* 4.1.7  Others */

/**
 * 4.2  HEADER
 * ---- Styles that apply to the header area
 */

/* 4.2.1  Rows */

/* 4.2.2  Branding */

/* 4.2.3  Menu */

/* 4.2.4  Others */

/**
 * 4.3  CONTENT
 * ---- Styles that apply to the content area of specific pages
 */

/* 4.3.1  Landing Page */
.plan-content .pp-icon-list .pp-icon-list-items .pp-icon-list-item {
	display: flex;
	padding: 10px 16%;
	border-bottom: 1px solid rgba(76, 36, 141, 0.36);
	align-items: center;
}

.plan-content .pp-icon-list .pp-icon-list-items .pp-icon-list-item .pp-list-item-text {
	flex: 1;
}

.faqs .pp-accordion {
	border-top: 1px solid #8041A8;
}

.faqs .pp-accordion-item {
	border-bottom: 1px solid #8041A8;
}

.faqs .pp-accordion-item.pp-accordion-item-active .pp-accordion-button-icon,
.faqs .pp-accordion-item:hover .pp-accordion-button-icon {
	color: #E72561;
}

/**
 * 4.4  FOOTER
 * ---- Styles that apply to the footer area
 */

/* 4.4.1  Rows */

/* 4.4.2  Branding */

/* 4.4.3  Menus */

/* 4.4.4  Others */
.copyright {
	text-align: center;
}

.copyright a,
.copyright .developer {
	display: inline-block;
}

/**
 * 4.5  OTHERS
 * ---- Styles for elements that does not meet the criteria above
 */

/**=======================================================================================
 * 5.0  RESPONSIVE
 * ---------------------------------------------------------------------------------------
 * CSS styles that apply to different media types.
 * 
 * Only include the following at-rules in this area:
 * - @media   : A conditional group rule that will apply its content if the device meets
                the criteria of the condition defined using a media query.
 * - @page    : Describes the aspect of layout changes that will be applied when printing
                the document.
 * - @supports: A conditional group rule that will apply its content if the browser meets
                the criteria of the given condition.
 =======================================================================================*/

/**
 * 5.1  LARGE SCREENS ONLY
 * ---- (min-width: 993px)
 */
@media only screen and (min-width: 993px) {}

/**
 * 5.2  MEDIUM AND SMALL SCREENS
 * ---- (max-width: 992px)
 */
@media only screen and (max-width: 992px) {
	.wave-top>.fl-row-content-wrap::before {
		background-size: 1500px auto;
	}

	.wave-bottom>.fl-row-content-wrap::after {
		background-size: 1500px auto;
	}
}

/**
 * 5.3  MEDIUM SCREENS ONLY
 * ---- (min-width: 769px and max-width: 992px)
 */
@media only screen and (min-width: 769px) and (max-width: 992px) {}

/**
 * 5.4  MEDIUM AND LARGE SCREENS
 * ---- (min-width: 769px)
 */
@media only screen and (min-width: 769px) {}

/**
 * 5.5  SMALL AND SMALLER SCREENS
 * ---- (max-width: 768px)
 */
@media only screen and (max-width: 768px) {

	header.sticky-activated {
		width: 100%;
		position: fixed !important;
		left: 0;
		right: 0;
		top: 0;
		z-index: 100;
		-webkit-animation: slide-down 0.7s;
		-moz-animation: slide-down 0.7s;
		animation: slide-down 0.7s;
	}

	.home header.sticky-activated {
		background-color: #ffffff;
	}

	header.sticky-activated .fl-row-content-wrap {
		-webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
		box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
	}

	.plan-content .pp-icon-list .pp-icon-list-items .pp-icon-list-item {
		padding-left: 10px;
		padding-right: 10px;
	}
}

/**
 * 5.6  SMALL SCREENS ONLY
 * ---- (min-width: 481px and max-width: 768px)
 */
@media only screen and (min-width: 481px) and (max-width: 768px) {}

/**
 * 5.7  GRAVITY FORMS DESKTOP
 * ---- (min-width: 641px)
 */
@media only screen and (min-width: 641px) {}

/**
 * 5.8  GRAVITY FORMS RESPONSIVE
 * ---- (max-width: 640px)
 */
@media only screen and (max-width: 640px) {}

/**
 * 5.9  SMALLER SCREENS ONLY
 * ---- (max-width: 480px)
 */
@media only screen and (max-width: 480px) {}