/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


::selection {
  background: #ffe09f; /* Light gold/yellow highlight */
  color: #000;         /* Optional: change the text colour */
}
::-moz-selection {
  background: #ffe09f;
  color: #000;
}

/** FAQ ACCORDION - CREATED BY L LANZA */
.transition, ul.faq-accordion li i:before, ul.faq-accordion li i:after, p {
  transition: all 0.25s ease-in-out;
}

ul.faq-accordion {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}
ul.faq-accordion li {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 10px;
  padding-top: 18px;
  padding-right: 18px;
  border-top: 1px solid rgba(184, 129, 79, 0.15);
}

ul.faq-accordion li:nth-of-type(1) {
  animation-delay: 0.5s;
}
ul.faq-accordion li:nth-of-type(2) {
  animation-delay: 0.75s;
}
ul.faq-accordion li:nth-of-type(3) {
  animation-delay: 1s;
}
ul.faq-accordion li:last-of-type {
  padding-bottom: 0;
}
ul.faq-accordion li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 16px;
  right: 0;
}
ul.faq-accordion li i:before, ul.faq-accordion li i:after {
  content: "";
  position: absolute;
  background-color: #26313D;
  width: 3px;
  height: 9px;
}
ul.faq-accordion li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
ul.faq-accordion li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
ul.faq-accordion li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
ul.faq-accordion li input[type=checkbox]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  transform: translate(0, 50%);
}
ul.faq-accordion li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
ul.faq-accordion li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}
ul.faq-accordion li h5 {
  padding: 0.5em 0;
}
@media only screen and (max-width: 768px) {
  ul.faq-accordion li h5 {
    line-height: 1.75em !important;
  }
}
ul.faq-accordion p {
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
}

@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}
/** END FAQ ACCORDION */