/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.accordion-item {
  border: 1px solid #cba762 !important;
  overflow: hidden;
  background: #cba762 !important;
  border-radius: 10px !important;
}

.accordion-title {
  padding: 20px 50px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  color: #fff !important;
/*  font-family: "Italiana", serif; */
  font-size: 20px;
}

.accordion-title.active {
  font-weight: 400;	
}

.accordion-inner {
	background-color: white;
	color: #000;
  font-weight: 500;
  font-family: "Poppins", serif;
  font-size: 18px;
  padding: 10px;
}

.accordion .toggle {
	top:.68em !important;
	color: black;
}
.accordion .active .toggle {
    color: black;
}

@media only screen and (max-width: 26.5em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
.accordion-title {
  padding: 20px 50px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  color: #fff !important;
/*  font-family: "Italiana", serif; */
  font-size: 10px;
}

}

@media screen and (max-width: 56em) and (orientation: landscape) {

	/* Your CSS styles for mobile landscape go here */
}

