/*
Theme Name: Salumatics Child
Author: Dream-Theme
Author URI: http://dream-theme.com/
Description: The7 is perfectly scalable, performance and SEO optimized, responsive, retina ready multipurpose WordPress theme. It will fit every site – big or small. From huge corporate portals to studio or personal sites – The7 will become a great foundation for your next project!
Version: 1.0.0
License: This WordPress theme is comprised of two parts: (1) The PHP code and integrated HTML are licensed under the GPL license as is WordPress itself.  You will find a copy of the license text in the same directory as this text file. Or you can read it here: http://wordpress.org/about/gpl/ (2) All other parts of the theme including, but not limited to the CSS code, images, and design are licensed according to the license purchased. Read about licensing details here: http://themeforest.net/licenses/regular_extended
Template: dt-the7
*/

/* WordPress Modal Styles */
.wp-modal {
	display: none;
	position: fixed;
	z-index: 999999;
	left: 0;
	top: 25px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	animation: fadeIn 0.3s ease-in-out;
}

.wp-modal.show {
	display: block;
}

.wp-modal-content {
	background-color: #fff;
	margin: 10% auto;
	padding: 2.5rem 4.5rem;
	border-radius: 8px;
	width: 90%;
	max-width: 600px;
	position: relative;
	animation: slideIn 0.3s ease-out;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	max-height: 90vh;
	overflow-y: auto;
}

.wp-modal-close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	line-height: 1;
}

.wp-modal-close:hover,
.wp-modal-close:focus {
	color: #000;
	text-decoration: none;
}

.wp-form-row {
	display: flex;
	gap: 15px;
}

.wp-form-row .wp-form-group {
	flex: 1;
	margin-bottom: 15px;
}

.wp-form-group {
	margin-bottom: 15px;
}

.wp-form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	color: #333;
}

.wp-form-group input,
.wp-form-group textarea,
.wp-form-group select {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	box-sizing: border-box;
}

.wp-form-group textarea {
	resize: vertical;
	min-height: 80px;
}

.wp-form-group select {
	background-color: white;
}

.wp-conditional-field {
	display: none;
	margin-top: 10px;
	padding: 15px;
	background-color: #f8f9fa;
	border-radius: 4px;
	border: 1px solid #e9ecef;
}

.wp-conditional-field.show {
	display: block;
}

.wp-checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wp-checkbox-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.wp-checkbox-item input[type="checkbox"] {
	width: auto;
	margin: 0;
}

.wp-checkbox-item label {
	margin: 0;
	font-weight: normal;
	cursor: pointer;
}

.btn {
	background-color: #0073aa;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	margin-right: 10px;
	text-decoration: none;
	display: inline-block;
}

.btn:hover {
	background-color: #005a87;
	color: white;
}

.btn-secondary {
	background-color: #6c757d;
}

.btn-secondary:hover {
	background-color: #545b62;
}

.wp-modal-success {
	background-color: #d4edda;
	color: #155724;
	padding: 10px;
	border-radius: 4px;
	margin-bottom: 20px;
	border: 1px solid #c3e6cb;
}

.wp-modal-error {
	background-color: #f8d7da;
	color: #721c24;
	padding: 10px;
	border-radius: 4px;
	margin-bottom: 20px;
	border: 1px solid #f5c6cb;
}

.wp-modal-inquiry-title-container {
	text-align: center;
}

.wp-modal-inquiry-title-container > h2 {
	font-size: 1.8rem;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideIn {
	from { 
		opacity: 0;
		transform: translateY(-50px);
	}
	to { 
		opacity: 1;
		transform: translateY(0);
	}
}