/*
Theme Name:   Genatsvale child
Theme URI:    https://xstore.8theme.com
Description:  XStore is a multi-purpose theme that offers the ultimate WordPress and WooCommerce synergy, providing a comprehensive, all-in-one solution.
Author:       8theme
Author URI:   https://www.8theme.com
Template:     xstore
Version:      1.0
Text Domain:  xstore-child
Tags: e-commerce, two-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, custom-logo, featured-images, full-width-template, threaded-comments, accessibility-ready, rtl-language-support, footer-widgets, sticky-post, theme-options, translation-ready, ecommerce, woocommerce, shop, elementor, business, corporate, blog, news, light, dark
*/

/* Общий контейнер поп-up */
.pop_up {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5); /* затемнённый фон */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Контент формы по центру */
.custom-form{
    max-width: 600px;
    width: 90%;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
    font-family: Arial, sans-serif;
    margin: 0 auto;
    border: 1px solid #fff;
}


/* Форма для добавления Email */
.email-subscribe-form{
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.div_captcha_but{
	display:flex;
	justify-content: space-between;
	gap:10px;
}



/* Структура формы */
.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-size: 14px;
    color: black;
}

.form-group input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: #0073ff;
    outline: none;
    box-shadow: 0 0 5px rgba(0,115,255,0.3);
}

.form-submit {
    width: 100%;
    display: flex;
	flex-direction: row;
    justify-content: space-between;
	align-items: center;
}

.form-submit p{
	margin-bottom: 0rem;
}

/* Кнопка отправки */
.wpcf7 form .custom-btn {
    width: 150px;
	height: 40px;
    padding: 13px 8px ;
    background: linear-gradient(135deg, #0073ff, #00c6ff) !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 115, 255, 0.3);
}

 .wpcf7 form .custom-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 115, 255, 0.4);
    background: linear-gradient(135deg, #005edb, #00aaff) !important;
}

.wpcf7 form .custom-btn:active {
    transform: scale(0.98);
    box-shadow: 0 3px 10px rgba(0, 115, 255, 0.2);
}

/* Скрытие стандартного вывода CF7 */
.wpcf7-response-output {
    position: absolute;
	right: 10px;
	bottom: 10px;
}
.wpcf7-not-valid-tip{
	font-size: 0.7em !important;
}