/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
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: 1.0.1
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
*/

.panel {
  border-radius: 4px;
  margin: 10px;
  box-shadow: 0px 8px 24px 0px rgba(15.999999999999996, 82.00000000000001, 156, 0.5);
}

.panel-header {
	background-color: #f2f2f2;
	padding: 10px;
	cursor: pointer;
	font-size: 1.5rem;
	text-align: center;
	transition: background 0.3s linear;
}

.panel-header:hover {
	background-color: white;
}

.panel-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.65s linear;
}

.form-submitting {
	background: red;
}

.panel.expanded .panel-content {
	max-height: 250px;
	height: 250px
}

#form_search {
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

#form_search .form-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#form_search .form-col {
	width: 25%;
	padding: 10px;
}

#form_search label {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
	color: #333333;
}

#form_search select {
	width: 100%;
	padding: 8px;
	border-radius: 4px;
	border: 1px solid #ccc;
	background-color: #fff;
	color: #333333;
}

#form_search select:focus {
	border-color: var( --e-global-color-primary );
}

#form_search input {
	width: 100%;
	padding: .5rem 1rem;
	background-color: #FFFFFF;
	border-color: #DBDBDB;
	border-radius: 3px 3px 3px 3px;
	font-size: 16px;
	line-height: 24px;
	border: 1px solid #DBDBDB;
}

#form_search input:focus {
	-webkit-box-shadow: 0 0 0 1px rgba(0,0,0,.1) inset;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.1);
	outline: 0;
}

#search_result_section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

#search_result_section > div{
	box-shadow: 0px 4px 16px 0px rgba(15.999999999999996, 82.00000000000001, 156, 0.1411764705882353);
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	padding: 24px 24px 24px 24px;
}

.image-div img{
	width: 360px;
	height: 240px;
}

.title-div-container{
	display: block;
	width: 100%;
	min-height: 64px;
}

.title-div{
	margin: 16px 0px 8px 0px;
}

.title-div h3{
	color: var( --e-global-color-primary );
	font-family: "Segoe", Sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 26px;
}

.price-div p{
	color: var( --e-global-color-primary );
	font-family: "Segoe", Sans-serif;
	font-size: 16px;
	font-weight: normal;
	line-height: 22px;
}

.text-bolder{
	font-weight: bolder;
}

.btn-div-container {
	display: block;
	width: 100%;
}

.btn-div-container a {
	font-family: "Segoe", Sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	background-color: var( --e-global-color-primary );
	border-radius: 2px 2px 2px 2px;
	padding: 10px 18px 10px 14px;
}

.btn-div-container a:hover {
	background-color: var( --e-global-color-c9780cb );
}

#btn-to-hide{
    display: none;
    visibility: hidden;
}

@media (max-width: 767px) {
  
	.panel.expanded .panel-content {
		max-height: 60vh;
		height: 60vh;
	}
	
	#search_result_section {
	grid-template-columns: repeat(1, 1fr);
	gap: 5px;
	}
}