/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

.book-container {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 300px;
}

@keyframes initAnimation {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(-26deg);
  }
}

.book {
  width: 200px;
  height: 300px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-26deg);
  transition: 1s ease;
  animation: 1s ease 0s 1 initAnimation;
}

.book-container:hover .book, 
.book-container:focus .book {
  transform: rotateY(0deg);
}

.book > :first-child {
  position: absolute;
  top: 0;
  left: 0;
  background-color: red;
  width: 200px;
  height: 300px;
  transform: translateZ(32.5px);
  background-color: #01060f;
  border-radius: 0 2px 2px 0;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
}

.book::before {
  position: absolute;
  content: ' ';
  background-color: blue;
  left: 0;
  top: 0px;
  width: 63px;
  height: 300px;
  transform: translateX(267.5px) rotateY(90deg);
  background: linear-gradient(90deg, 
    #fff 0%,
    #f9f9f9 5%,
    #fff 10%,
    #f9f9f9 15%,
    #fff 20%,
    #f9f9f9 25%,
    #fff 30%,
    #f9f9f9 35%,
    #fff 40%,
    #f9f9f9 45%,
    #fff 50%,
    #f9f9f9 55%,
    #fff 60%,
    #f9f9f9 65%,
    #fff 70%,
    #f9f9f9 75%,
    #fff 80%,
    #f9f9f9 85%,
    #fff 90%,
    #f9f9f9 95%,
    #fff 100%
    );
}

.book::after {
  position: absolute;
  top: 0;
  left: 0;
  content: ' ';
  width: 200px;
  height: 300px;
  transform: translateZ(-32.5px);
  background-color: #01060f;
  border-radius: 0 2px 2px 0;
  box-shadow: -10px 0 50px 10px rgba(0,0,0,0.1);
}

.more-less .content {
    max-height: 400px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.more-less .toggle {
    display: none;
}

.more-less .toggle:checked ~ .content {
    max-height: none;
}

.more-less .toggle:not(:checked) + .more-link::after {
    content: "";
}

.more-less .toggle:checked + .more-link::after {
    content: "";
}

.more-link {
    display: block;
    text-align: right;
    cursor: pointer;
}

.more-link::after {
    content: "Read more";
}

.more-link:hover {
    text-decoration: underline;
}

@media (min-width: 992px) {
	.pp-sticky-column {
		display: flex;
		justify-content: space-around;
		align-items: flex-start;
	}
	.pp-sticky-column .fl-col-content {
		position:-webkit-sticky !important;
		position: sticky !important;
		top: 100px !important;
		z-index: 4;
	}
}

.fl-builder-content-113 {
	padding: 0px;
}

.wp-caption {
    background: transparent;
	border: none;
    border-bottom: 1px solid #d1d5cf;
    padding: 0;
}

.fl-node-2v3hjr9u4gwp .fl-menu .menu {
	display: flex !important;
}

.fl-node-2v3hjr9u4gwp .fl-menu .menu #menu-item-70 {
	flex: 1;
}

.fl-node-2v3hjr9u4gwp .menu .fl-has-submenu .sub-menu {
	width: 100%;
}

cite {
	font-style: normal !important;
	display: block;
	padding-top: 8px;
}

.grecaptcha-badge {
	opacity: 0 !important;
}

@media screen and (max-width: 769px) {
	.wp-caption {
		width: 100%;
		text-align: center;
	}
}

.p-contact > span {
	color: #000 !important;
}

.p-contact > span > a {
	color: #164949 !important;
}

div.wpforms-container-full input[type=submit]:not(:hover):not(:active), div.wpforms-container-full button[type=submit]:not(:hover):not(:active), div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active) {
	background-color: #164949 !important;
	width: 100%;
}

.edd-blocks__download-image-link, .edd-blocks__download-header h3 {
	pointer-events: none
}

.edd-submit.button.blue {
    width: 100%;
    padding: 20px;
	background: #257c7c;
}

.edd-submit.button.blue:hover {
	background: #164949 !important;
}