.wpcf7-form * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wpcf7-form .sub_section {
    background: #FFFFFF;
    border: 1px solid #e5e7eb;
    padding: 40px;
    margin-bottom: 32px;
    position: relative;
    -webkit-box-shadow: 0 4px 6px rgba(9, 19, 53, 0.05);
    box-shadow: 0 4px 6px rgba(9, 19, 53, 0.05);
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
    overflow: clip;
}

.wpcf7-form .sub_section:hover {
    -webkit-box-shadow: 0 10px 25px rgba(9, 19, 53, 0.1);
    box-shadow: 0 10px 25px rgba(9, 19, 53, 0.1);
}


.wpcf7-form .sub_section h3 {
    font-family: "Ubuntu", sans-serif;
    font-weight: 600;
    font-size: 26px;
    color: #091335;
    margin: 0 0 28px 0;
    padding: 0 0 16px 0;
    border-bottom: 2px solid #f3f4f6;
}

.wpcf7-form .sub_section h4 {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #091335;
    margin: 28px 0 20px 0;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.wpcf7-form label {
    display: block;
    font-weight: 500;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 3;
}

.wpcf7-form label.subtitle {
    font-weight: 600;
    font-size: 15px;
    color: #091335;
    margin: 40px 0 5px 0;
    text-transform: none;
    letter-spacing: 0;
    border-left: 4px solid #091335;
    padding-left: 12px;
}

.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-tel,
.wpcf7-form .wpcf7-number,
.wpcf7-form .wpcf7-textarea,
.wpcf7-form .wpcf7-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: "Ubuntu", sans-serif;
    border: 2px solid #e5e7eb;
    background: #f8f9fc;
    color: #3F4144;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    outline: none;
    border-radius: 8px;
}

.wpcf7-form .wpcf7-text:hover,
.wpcf7-form .wpcf7-email:hover,
.wpcf7-form .wpcf7-tel:hover,
.wpcf7-form .wpcf7-number:hover,
.wpcf7-form .wpcf7-textarea:hover,
.wpcf7-form .wpcf7-select:hover {
    border-color: #94a3b8;
    background: #f8f9fc;
}

.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-email:focus,
.wpcf7-form .wpcf7-tel:focus,
.wpcf7-form .wpcf7-number:focus,
.wpcf7-form .wpcf7-textarea:focus,
.wpcf7-form .wpcf7-select:focus {
    border-color: #091335;
    -webkit-box-shadow: 0 0 0 4px rgba(9, 19, 53, 0.08);
    box-shadow: 0 0 0 4px rgba(9, 19, 53, 0.08);
    background: #f8f9fc;
}

.wpcf7-form .wpcf7-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: "Ubuntu", sans-serif;
}

.wpcf7-form .wpcf7-select {
    cursor: pointer;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23091335'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 20px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    max-width: 400px;
}

.wpcf7-form .wpcf7-not-valid {
    border-color: #dc2626 !important;
    background: #fef2f2 !important;
    -webkit-animation: shake 0.4s ease;
    animation: shake 0.4s ease;
}

.wpcf7-form .wpcf7-not-valid-tip {
    background: #dc2626;
    color: white;
    padding: 8px 14px;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
    display: block !important;
    visibility: visible !important;
    position: relative;
    -webkit-animation: slideIn 0.3s ease;
    animation: slideIn 0.3s ease;
}

.wpcf7-form .wpcf7-not-valid-tip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #dc2626;
}

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }
}

@keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }
}

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

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

.wpcf7-form .row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.wpcf7-form .imgradio {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.wpcf7-form .imgradio span {
    display: contents;
}

.wpcf7-form .imgradio .item {
    position: relative;
    background: #f6f7f9;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    border-radius: 8px;
}

.wpcf7-form .imgradio .item:hover {
    border-color: #94a3b8;
    -webkit-box-shadow: 0 8px 16px rgba(9, 19, 53, 0.1);
    box-shadow: 0 8px 16px rgba(9, 19, 53, 0.1);
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}

.wpcf7-form .imgradio .item label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    cursor: pointer;
    margin: 0;
    position: relative;
    height: 100%;
}

.wpcf7-form .imgradio .item img {
    width: 100%;
    height: 190px;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    padding: 0;
    background: -o-linear-gradient(315deg, #f8f9fc 0%, #f3f4f6 100%);
    background: linear-gradient(135deg, #f8f9fc 0%, #f3f4f6 100%);
}

.wpcf7-form .typ_farby .item img,
.wpcf7-form .cast_oplotenia .item img {
    height: 120px !important;
    -o-object-fit: contain !important;
    object-fit: contain !important;
}

.wpcf7-form .imgradio .item .title {
    padding: 6px 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1.3;
    word-break: break-word;
    color: #3F4144;
    bottom: 0;
    background: white;
}

.wpcf7-form .imgradio .item.active .title {
    background: #2196F3;
    color: white;
    font-weight: bold;

}

.wpcf7-form .imgradio .item label.active .title {
    background: #2196F3;
    color: white;
    font-weight: bold;

}


.color .item.coloritem .title {
    font-size: 8px !important;
    white-space: nowrap;
}

.wpcf7-form .imgradio .item.active,
.wpcf7-form .imgradio label.active > .item,
.wpcf7-form .imgradio .item:has(input:checked) {
    border-color: #2196F3;
    background: -o-linear-gradient(315deg, #f8f9fc 0%, #FFFFFF 100%);
    background: linear-gradient(135deg, #f8f9fc 0%, #FFFFFF 100%);
    -webkit-box-shadow: 0 0 0 4px #2196F324;
    box-shadow: 0 0 0 4px #2196F324;
}

.wpcf7-form .imgradio label.active::before,
.wpcf7-form .imgradio .item:has(input:checked)::before {
    content: '✓';
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    width: 26px;
    height: 26px;
    background: #2196F3;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    z-index: 10;
    border-radius: 50%;
}


.wpcf7-form .imgradio .item a.fusion-lightbox {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 255, 255, 0.95);
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #6b7280;
    z-index: 5;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.wpcf7-form .imgradio .item a.fusion-lightbox:hover {
    background: #091335;
    color: white;
    border-color: #091335;
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}

.wpcf7-form .serie .selector .imgradio {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.wpcf7-form .serie .selector .imgradio .item img {
    height: 320px;
    -o-object-fit: cover;
    object-fit: cover;
}

.wpcf7-form .typ_plota .item img {
    height: 220px;
    -o-object-fit: cover;
    object-fit: cover;
}

.wpcf7-form .typfarby .imgradio {
    -ms-grid-columns: (1fr) [ 3 ];
    grid-template-columns: repeat(3, 1fr);
}

.wpcf7-form .cast_oplotenia .imgradio {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.wpcf7-form .imgradio.color {
    display: -ms-grid;
    display: grid;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
    padding: 20px;
    background: -o-linear-gradient(315deg, #f8f9fc 0%, #f3f4f6 100%);
    background: linear-gradient(135deg, #f8f9fc 0%, #f3f4f6 100%);
    border: 1px solid #e5e7eb;
    -ms-grid-columns: 7fr, auto 12px auto;
    grid-template-columns: 7fr, auto auto;
    -ms-grid-columns: minmax(0, 1fr) 12px minmax(0, 1fr) 12px minmax(0, 1fr) 12px minmax(0, 1fr) 12px minmax(0, 1fr) 12px minmax(0, 1fr);
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.wpcf7-form .imgradio.color .item {
    width: 200px;
    height: 85px;
    border: 3px solid #e5e7eb;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    display: block;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.wpcf7-form .imgradio.color .item:hover {
    border-color: #6b7280;
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.wpcf7-form .imgradio.color .item.active,
.wpcf7-form .imgradio.color .item:has(input:checked) {
    border-color: #091335;
    -webkit-box-shadow: 0 0 0 3px white, 0 0 0 5px #091335;
    box-shadow: 0 0 0 3px white, 0 0 0 5px #091335;
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}

.wpcf7-form .imgradio.color .item label {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.wpcf7-form .extendbutton {
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    color: #091335;
    background: none;
    text-decoration: underline;
}

.wpcf7-form .extendbutton:hover {
}

.wpcf7-form .extendbutton:active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.wpcf7-form .wpcf7-field-group {
    background: #f8f9fc;
    border: 1px solid #e5e7eb;
    padding: 24px;
    margin-bottom: 20px;
    position: relative;
    border-left: 4px solid #091335;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.wpcf7-form .wpcf7-field-group:hover {
    -webkit-box-shadow: 0 4px 12px rgba(9, 19, 53, 0.08);
    box-shadow: 0 4px 12px rgba(9, 19, 53, 0.08);
}

.wpcf7-form .wpcf7-field-group-add,
.wpcf7-form .wpcf7-field-group-remove {
    width: 36px;
    height: 36px;
    border: none;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 10px;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.wpcf7-form .wpcf7-field-group-add {
    background: -o-linear-gradient(315deg, #10b981 0%, #059669 100%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.wpcf7-form .wpcf7-field-group-add:hover {
    background: -o-linear-gradient(315deg, #059669 0%, #047857 100%);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 0 6px 12px rgba(16, 185, 129, 0.3);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.3);
}

.wpcf7-form .wpcf7-field-group-remove {
    background: -o-linear-gradient(315deg, #ef4444 0%, #dc2626 100%);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.wpcf7-form .wpcf7-field-group-remove:hover {
    background: -o-linear-gradient(315deg, #dc2626 0%, #b91c1c 100%);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 0 6px 12px rgba(239, 68, 68, 0.3);
    box-shadow: 0 6px 12px rgba(239, 68, 68, 0.3);
}

.wpcf7-form .inputsinline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wpcf7-form .inputsinline label {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 150px;
}

.wpcf7-form .wpcf7-list-item {
    margin: 0 24px 12px 0;
    display: inline-block;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.wpcf7-form .wpcf7-list-item input[type="radio"],
.wpcf7-form .wpcf7-list-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    vertical-align: middle;
    cursor: pointer;
    accent-color: #091335;
}

.wpcf7-form .wpcf7-list-item-label {
    font-size: 15px;
    color: #3F4144;
    cursor: pointer;
    vertical-align: middle;
    -webkit-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.wpcf7-form .wpcf7-list-item:hover .wpcf7-list-item-label {
    color: #091335;
}

.wpcf7-form .miesto_medzi_lamelami .wpcf7-list-item,
.wpcf7-form .serie .wpcf7-list-item {
    display: block;
    margin: 0 0 10px 0;
    padding: 14px 18px;
    background: -o-linear-gradient(315deg, #f8f9fc 0%, #FFFFFF 100%);
    background: linear-gradient(135deg, #f8f9fc 0%, #FFFFFF 100%);
    border-left: 4px solid #e5e7eb;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.wpcf7-form .miesto_medzi_lamelami .wpcf7-list-item:hover,
.wpcf7-form .serie .wpcf7-list-item:hover {
    background: -o-linear-gradient(315deg, #f3f4f6 0%, #FFFFFF 100%);
    background: linear-gradient(135deg, #f3f4f6 0%, #FFFFFF 100%);
    border-left-color: #091335;
    padding-left: 22px;
}

.wpcf7-form .pohonkey .wpcf7-list-item {
    display: block;
    margin: 12px 0;
    padding: 16px 20px;
    background: white;
    border: 2px solid #e5e7eb;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.wpcf7-form .pohonkey .wpcf7-list-item:hover {
    border-color: #091335;
    background: -o-linear-gradient(315deg, #f8f9fc 0%, #FFFFFF 100%);
    background: linear-gradient(135deg, #f8f9fc 0%, #FFFFFF 100%);
    -webkit-box-shadow: 0 4px 12px rgba(9, 19, 53, 0.1);
    box-shadow: 0 4px 12px rgba(9, 19, 53, 0.1);
}

.wpcf7-form .captcha-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    padding: 28px;
    background: -o-linear-gradient(315deg, #f8f9fc 0%, #f3f4f6 100%);
    background: linear-gradient(135deg, #f8f9fc 0%, #f3f4f6 100%);
    margin: 24px 0;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
}

.wpcf7-form .captcha-image label {
    padding: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: white;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.wpcf7-form .captcha-image label:hover {
    border-color: #091335;
    background: #f8f9fc;
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}

.wpcf7-form .captcha-image label input:checked + svg {
    color: #091335;
}

.wpcf7-form .captcha-image svg {
    width: 44px;
    height: 44px;
    color: #6b7280;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    display: block;
}

.wpcf7-form .cf7ic_instructions {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    font-style: italic;
}

.wpcf7-form .cf7ic_instructions span {
    font-weight: 600;
    color: #091335;
    font-style: normal;
    background: -webkit-gradient(linear, left top, right top, from(#091335), to(#1a2451));
    background: -o-linear-gradient(left, #091335 0%, #1a2451 100%);
    background: linear-gradient(90deg, #091335 0%, #1a2451 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wpcf7-form .wpcf7-submit {
    background: -o-linear-gradient(315deg, #091335 0%, #1a2451 100%);
    background: linear-gradient(135deg, #091335 0%, #1a2451 100%);
    color: white;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    -webkit-box-shadow: 0 4px 14px rgba(9, 19, 53, 0.2);
    box-shadow: 0 4px 14px rgba(9, 19, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.wpcf7-form .wpcf7-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
    background: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.2), transparent);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    -webkit-transition: left 0.6s ease;
    -o-transition: left 0.6s ease;
    transition: left 0.6s ease;
}

.wpcf7-form .wpcf7-submit:hover {
    background: -o-linear-gradient(315deg, #050a1f 0%, #091335 100%);
    background: linear-gradient(135deg, #050a1f 0%, #091335 100%);
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 8px 20px rgba(9, 19, 53, 0.3);
    box-shadow: 0 8px 20px rgba(9, 19, 53, 0.3);
}

.wpcf7-form .wpcf7-submit:hover::before {
    left: 100%;
}

.wpcf7-form .wpcf7-submit:active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-box-shadow: 0 2px 8px rgba(9, 19, 53, 0.2);
    box-shadow: 0 2px 8px rgba(9, 19, 53, 0.2);
}

.wpcf7-form .wpcf7-submit:disabled,
.wpcf7-form .wpcf7-submit.submitting {
    opacity: 0.7;
    cursor: not-allowed;
}

.wpcf7-form .wpcf7cf-hidden {
    display: none !important;
}

.wpcf7-form .hideradio,
.wpcf7-form .hidecheckbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wpcf7-form .decoral-farby .imgradio,
.wpcf7-form .metalicka-farby .imgradio {
    -ms-grid-columns: (1fr) [ 4 ];
    grid-template-columns: repeat(4, 1fr);
}

.wpcf7-form .decoral-farby .imgradio .item img,
.wpcf7-form .metalicka-farby .imgradio .item img {
    height: 100px;
    padding: 8px;
}

#decoralcolors,
#metalickecolors,
#ralcolors {
    margin-top: 20px;
    padding-top: 24px;
    border-top: 2px solid #e5e7eb;
    -webkit-animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@-webkit-keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        max-height: 2000px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        max-height: 2000px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.wpcf7-form .wpcf7-spinner {
    display: none;
    margin-left: 16px;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    -webkit-animation: spin 0.8s linear infinite;
    animation: spin 0.8s linear infinite;
}

.wpcf7-form.submitting .wpcf7-spinner {
    display: inline-block !important;
    vertical-align: middle;
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.wpcf7-form .wpcf7-response-output {
    margin: 28px 0;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 500;
    -webkit-animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid;
    display: block !important;
}

.wpcf7 .screen-reader-response.active {
    position: relative;
    clip: auto;
    width: auto;
    height: auto;
    overflow: visible;
    margin: 0 0 24px 0;
    padding: 16px 20px;
    border-radius: 14px;
    border: 2px solid #091335;
    background: -o-linear-gradient(315deg, #f0f3ff 0%, #e6edff 100%);
    background: linear-gradient(135deg, #f0f3ff 0%, #e6edff 100%);
    color: #091335;
    box-shadow: 0 6px 18px rgba(9, 19, 53, 0.08);
    display: block !important;
}

.wpcf7 .screen-reader-response.error-message {
    border-color: #ef4444;
    background: -o-linear-gradient(315deg, #fef2f2 0%, #fee2e2 100%);
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #991b1b;
}

@-webkit-keyframes slideInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.wpcf7-form .wpcf7-response-output.wpcf7-display-none {
    display: none !important;
}

.wpcf7-form .wpcf7-validation-errors,
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
    background: -o-linear-gradient(315deg, #fef2f2 0%, #fee2e2 100%);
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #ef4444;
    color: #991b1b;
    display: block !important;
    visibility: visible !important;
}

.wpcf7-form .wpcf7-mail-sent-ok,
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
    background: -o-linear-gradient(315deg, #f0f3ff 0%, #e6edff 100%);
    background: linear-gradient(135deg, #f0f3ff 0%, #e6edff 100%);
    border-color: #091335;
    color: #091335;
    display: block !important;
    visibility: visible !important;
    position: relative;
    padding-left: 56px;
}

.wpcf7-form .wpcf7-spam-blocked,
.wpcf7-form .wpcf7-response-output.wpcf7-spam-blocked {
    background: -o-linear-gradient(315deg, #fef3c7 0%, #fde68a 100%);
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
    color: #92400e;
    display: block !important;
    visibility: visible !important;
}

.wpcf7-form .wpcf7-mail-sent-ng,
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ng {
    background: -o-linear-gradient(315deg, #fef2f2 0%, #fee2e2 100%);
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #ef4444;
    color: #991b1b;
    display: block !important;
    visibility: visible !important;
}

.wpcf7-form .wpcf7-acceptance-missing,
.wpcf7-form .wpcf7-response-output.wpcf7-acceptance-missing {
    background: -o-linear-gradient(315deg, #fef3c7 0%, #fde68a 100%);
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
    color: #92400e;
    display: block !important;
    visibility: visible !important;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output,
.wpcf7-form.spam .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.sent .wpcf7-response-output {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    display: block !important;
}

.wpcf7-form .wpcf7-mail-sent-ok::before,
.wpcf7-form.sent .wpcf7-response-output::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 28px;
    height: 28px;
    background: #091335;
    color: white;
    border-radius: 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    -webkit-animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@-webkit-keyframes successPop {
    0% {
        -webkit-transform: translateY(-50%) scale(0);
        transform: translateY(-50%) scale(0);
    }
    50% {
        -webkit-transform: translateY(-50%) scale(1.2);
        transform: translateY(-50%) scale(1.2);
    }
    100% {
        -webkit-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
    }
}

@keyframes successPop {
    0% {
        -webkit-transform: translateY(-50%) scale(0);
        transform: translateY(-50%) scale(0);
    }
    50% {
        -webkit-transform: translateY(-50%) scale(1.2);
        transform: translateY(-50%) scale(1.2);
    }
    100% {
        -webkit-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
    }
}

.wpcf7-form.invalid .wpcf7-response-output::before {
    content: '⚠';
    display: inline-block;
    width: 28px;
    height: 28px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    margin-right: 12px;
    font-weight: bold;
    -webkit-animation: shake 0.4s ease;
    animation: shake 0.4s ease;
}

.wpcf7-form .wpcf7-form-control-wrap.wpcf7-not-valid {
    position: relative;
}

.wpcf7-form .wpcf7-radio.wpcf7-not-valid,
.wpcf7-form .wpcf7-checkbox.wpcf7-not-valid {
    border: 2px solid #ef4444;
    padding: 12px;
    background: #fef2f2;
    border-radius: 8px;
}

.wpcf7-form span[data-name="typ_farby"] .wpcf7-not-valid-tip,
.wpcf7-form span[data-name="cast_oplotenia"] .wpcf7-not-valid-tip {
    display: block !important;
    margin-top: 10px;
    margin-bottom: 10px;
}

.wpcf7-form .imgradio.wpcf7-not-valid {
    border: 2px solid #ef4444;
    padding: 12px;
    background: #fef2f2;
    -webkit-animation: shake 0.4s ease;
    animation: shake 0.4s ease;
}

.wpcf7-form .wpcf7-not-valid:first-of-type {
    scroll-margin-top: 120px;
}

@media (max-width: 1024px) {
    .wpcf7-form .imgradio {
        -ms-grid-columns: (1fr) [ 4 ];
        grid-template-columns: repeat(4, 1fr);
    }

    .wpcf7-form .cast_oplotenia .imgradio {
        -ms-grid-columns: (1fr) [ 4 ];
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .wpcf7-form .sub_section {
        padding: 24px;
    }

    .wpcf7-form .row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .wpcf7-form .imgradio {
        -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .wpcf7-form .serie .selector .imgradio {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .wpcf7-form .cast_oplotenia .imgradio {
        -ms-grid-columns: (1fr) [ 3 ];
        grid-template-columns: repeat(3, 1fr);
    }

    .wpcf7-form .typfarby .imgradio {
        -ms-grid-columns: (1fr) [ 2 ];
        grid-template-columns: repeat(2, 1fr);
    }

    .wpcf7-form .wpcf7-submit {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .wpcf7-form .decoral-farby .imgradio,
    .wpcf7-form .metalicka-farby .imgradio {
        -ms-grid-columns: (1fr) [ 3 ];
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .wpcf7-form .sub_section {
        padding: 20px;
    }

    .wpcf7-form .sub_section h3 {
        font-size: 22px;
    }

    .wpcf7-form .imgradio {
        -ms-grid-columns: 1fr 10px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .wpcf7-form .cast_oplotenia .imgradio {
        -ms-grid-columns: (1fr) [ 2 ];
        grid-template-columns: repeat(2, 1fr);
    }

    .wpcf7-form .imgradio.color .item {
        width: 100%;
        height: 65px;
    }

    .wpcf7-form .imgradio.color {
        gap: 8px;
    }

    .wpcf7-form .inputsinline {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .wpcf7-form .inputsinline label {
        width: 100%;
    }

    .wpcf7-form .wpcf7-list-item {
        display: block;
        margin: 0 0 10px 0;
    }

    .wpcf7-form .decoral-farby .imgradio,
    .wpcf7-form .metalicka-farby .imgradio {
        -ms-grid-columns: (1fr) [ 2 ];
        grid-template-columns: repeat(2, 1fr);
    }
}

.wpcf7-form-control.wpcf7-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


@-webkit-keyframes errorSlideIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


@keyframes errorSlideIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


.captcha-image label > input:checked + svg, .captcha-image label > input:focus + svg {
    border: 3px solid #091335;
    padding: 4px;
}

.wpcf7-form.sent {
}


.wpcf7-form .wpcf7-form-control-wrap[data-name="typ_plota"] .wpcf7-not-valid-tip,
.wpcf7-form .wpcf7-form-control-wrap[data-name="seria_selector"] .wpcf7-not-valid-tip,
.wpcf7-form .wpcf7-form-control-wrap[data-name="typ_farby"] .wpcf7-not-valid-tip,
.wpcf7-form .wpcf7-form-control-wrap[data-name="cast_oplotenia"] .wpcf7-not-valid-tip {
    background: #dc2626;
    color: white;
    padding: 8px 14px;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
    display: block !important;
    visibility: visible !important;
    position: relative;
    -webkit-animation: slideIn 0.3s ease;
    animation: slideIn 0.3s ease;
    border-radius: 4px;
    clear: both;
    width: auto;
}

.wpcf7-form .wpcf7-form-control-wrap[data-name="typ_plota"] .wpcf7-not-valid-tip::before,
.wpcf7-form .wpcf7-form-control-wrap[data-name="seria_selector"] .wpcf7-not-valid-tip::before,
.wpcf7-form .wpcf7-form-control-wrap[data-name="typ_farby"] .wpcf7-not-valid-tip::before,
.wpcf7-form .wpcf7-form-control-wrap[data-name="cast_oplotenia"] .wpcf7-not-valid-tip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #dc2626;
}

.wpcf7-form .imgradio + .wpcf7-not-valid-tip {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    display: block !important;
    clear: both;
}

.wpcf7-form .wpcf7-form-control-wrap.wpcf7-not-valid .imgradio {
    border: 2px solid #ef4444;
    padding: 12px;
    background: #fef2f2;
    -webkit-animation: shake 0.4s ease;
    animation: shake 0.4s ease;
    border-radius: 8px;
}


.wpcf7-form .wpcf7-form-control-wrap {
    position: relative !important;
    width: 100%;
    margin-top: 8px !important;
}


.wpcf7-form .imgradio + .wpcf7-not-valid-tip,
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip,
.wpcf7-form [data-name="typ_farby"] .wpcf7-not-valid-tip,
.wpcf7-form [data-name="seria_selector"] .wpcf7-not-valid-tip,
.wpcf7-form [data-name="typ_plota"] .wpcf7-not-valid-tip,
.wpcf7-form [data-name="cast_oplotenia"] .wpcf7-not-valid-tip {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    margin-top: 10px !important;
    padding: 8px 14px !important;
    background: #dc2626 !important;
    color: white !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    border-radius: 4px !important;
    display: inline-block !important;
    width: auto !important;
    max-width: 300px !important;
    height: auto !important;
    line-height: 1.4 !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    border: none !important;
    font-family: "Ubuntu", sans-serif !important;
    z-index: 1000 !important;
    white-space: normal !important;
}


.wpcf7-form .wpcf7-not-valid-tip::before {
    content: '' !important;
    position: absolute !important;
    bottom: 100% !important;
    left: 20px !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 5px solid transparent !important;
    border-right: 5px solid transparent !important;
    border-bottom: 5px solid #dc2626 !important;
}


.wpcf7-form .wpcf7-form-control-wrap.wpcf7-not-valid > .imgradio {
    border: 2px solid #ef4444 !important;
    padding: 12px !important;
    background: #fef2f2 !important;
    border-radius: 8px !important;
}


.wpcf7-form .wpcf7-form-control-wrap.wpcf7-not-valid {
    margin-bottom: 40px !important;
}


.wpcf7-form .imgradio {
    position: relative !important;
}


.wpcf7-form .imgradio .wpcf7-form-control-wrap {
    position: static !important;
}


.wpcf7-form .wpcf7-not-valid-tip + .wpcf7-not-valid-tip {
    display: none !important;
}


.wpcf7 .wpcf7-not-valid-tip,
span.wpcf7-not-valid-tip {
    border: none !important;
    background: #dc2626 !important;
    color: white !important;
}

.wpcf7-form .wpcf7-field-group {
    background: #f8f9fc;
    border: 1px solid #e5e7eb;
    padding: 20px;
    margin-bottom: 24px;
    position: relative;
    border-radius: 0 16px 16px 0;
    -webkit-box-shadow: 0 2px 8px rgba(9, 19, 53, 0.06);
    box-shadow: 0 2px 8px rgba(9, 19, 53, 0.06);
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #091335;
}

.wpcf7-form .wpcf7-field-group:hover {
    -webkit-box-shadow: 0 6px 20px rgba(9, 19, 53, 0.12);
    box-shadow: 0 6px 20px rgba(9, 19, 53, 0.12);
}


.wpcf7-form .wpcf7-field-group label.subtitle {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: #091335;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #f3f4f6;
    text-transform: none;
    letter-spacing: 0;
    border-left: none;
    margin-bottom: 20px;
}

.wpcf7-form .wpcf7-field-group label.subtitle:not(:first-child) {
    margin-top: 10px;
}


.wpcf7-form .wpcf7-field-group .inputsinline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
}


.wpcf7-form .wpcf7-field-group .inputsinline label:not(.subtitle) {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 180px;
    max-width: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 1;
    gap: 0 !important;
}


.wpcf7-form .wpcf7-field-group input[type="number"] {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-family: "Ubuntu", sans-serif;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    color: #091335;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    outline: none;
    -moz-appearance: textfield;
    position: relative;
}


.wpcf7-form .wpcf7-field-group input[type="number"]::-webkit-outer-spin-button,
.wpcf7-form .wpcf7-field-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.wpcf7-form .wpcf7-field-group input[type="number"]:hover {
    border-color: #94a3b8;
    background: #f8f9fc;
}

.wpcf7-form .wpcf7-field-group input[type="number"]:focus {
    border-color: #091335;
    -webkit-box-shadow: 0 0 0 4px rgba(9, 19, 53, 0.08);
    box-shadow: 0 0 0 4px rgba(9, 19, 53, 0.08);
    background: white;
}


.wpcf7-form .wpcf7-field-group .wpcf7-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 10px;
    margin-bottom: 0;
}


.wpcf7-form .wpcf7-field-group .wpcf7-checkbox .wpcf7-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 4px 6px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    position: relative;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
}

.wpcf7-form .wpcf7-field-group .wpcf7-checkbox .wpcf7-list-item:hover {
    border-color: #091335;
    background: -o-linear-gradient(315deg, #f8f9fc 0%, #ffffff 100%);
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    -webkit-transform: translateX(4px);
    -ms-transform: translateX(4px);
    transform: translateX(4px);
    -webkit-box-shadow: 0 4px 12px rgba(9, 19, 53, 0.1);
    box-shadow: 0 4px 12px rgba(9, 19, 53, 0.1);
}


.wpcf7-form .wpcf7-field-group .wpcf7-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    padding: 0 12px 0 0;
    cursor: pointer;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    background: white;
    position: relative;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    margin: 0;
}

.wpcf7-form .wpcf7-field-group .wpcf7-checkbox input[type="checkbox"]:checked {
    background: #091335;
    border-color: #091335;
}


.wpcf7-form .wpcf7-field-group .wpcf7-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    -webkit-animation: checkPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: checkPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.wpcf7-form .wpcf7-field-group .wpcf7-checkbox .wpcf7-list-item-label {
    font-size: 15px;
    color: #3F4144;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    line-height: 1.4;
    padding-left: 5px;
}


.wpcf7-form .wpcf7-field-group .wpcf7-checkbox .wpcf7-list-item:has(input:checked) {
    background: #e6edff;
    border-color: #091335;
    -webkit-box-shadow: 0 0 0 3px rgba(9, 19, 53, 0.08);
    box-shadow: 0 0 0 3px rgba(9, 19, 53, 0.08);
}


.wpcf7-form .wpcf7-field-group-add,
.wpcf7-form .wpcf7-field-group-remove {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 8px 0 0;
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}


.wpcf7-form .wpcf7-field-group-add {
    background: -o-linear-gradient(315deg, #10b981 0%, #059669 100%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.wpcf7-form .wpcf7-field-group-add::before {
    content: 'Pridať ďalšiu bráničku';
    position: absolute;
    right: 100%;
    margin-right: 10px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.wpcf7-form .wpcf7-field-group-add:hover {
    background: -o-linear-gradient(315deg, #059669 0%, #047857 100%);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

.wpcf7-form .wpcf7-field-group-add:hover::before {
    opacity: 1;
}

.wpcf7-form .wpcf7-field-group-add:active {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}


.wpcf7-form .wpcf7-field-group-remove {
    background: -o-linear-gradient(315deg, #ef4444 0%, #dc2626 100%);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.wpcf7-form .wpcf7-field-group-remove::before {
    content: 'Odstrániť';
    position: absolute;
    right: 100%;
    margin-right: 10px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.wpcf7-form .wpcf7-field-group-remove:hover {
    background: -o-linear-gradient(315deg, #dc2626 0%, #b91c1c 100%);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
}

.wpcf7-form .wpcf7-field-group-remove:hover::before {
    opacity: 1;
}

.wpcf7-form .wpcf7-field-group-remove:active {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}


.wpcf7-form .wpcf7-field-group > button {
    position: absolute;
    top: 10px;
    right: 0px;
}

.wpcf7-form .wpcf7-field-group-remove {
    right: 90px !important;
}


@-webkit-keyframes checkPop {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0) rotate(-45deg);
        transform: translate(-50%, -50%) scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        -webkit-transform: translate(-50%, -50%) scale(1.2) rotate(5deg);
        transform: translate(-50%, -50%) scale(1.2) rotate(5deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(1) rotate(0);
        transform: translate(-50%, -50%) scale(1) rotate(0);
        opacity: 1;
    }
}


@keyframes checkPop {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0) rotate(-45deg);
        transform: translate(-50%, -50%) scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        -webkit-transform: translate(-50%, -50%) scale(1.2) rotate(5deg);
        transform: translate(-50%, -50%) scale(1.2) rotate(5deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(1) rotate(0);
        transform: translate(-50%, -50%) scale(1) rotate(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .wpcf7-form .wpcf7-field-group {
        padding: 24px 20px;
    }

    .wpcf7-form .wpcf7-field-group .inputsinline {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px;
    }

    .wpcf7-form .wpcf7-field-group .inputsinline label:not(.subtitle) {
        max-width: 100%;
    }

    .wpcf7-form .wpcf7-field-group .wpcf7-checkbox {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .wpcf7-form .wpcf7-field-group-add,
    .wpcf7-form .wpcf7-field-group-remove {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .wpcf7-form .wpcf7-field-group > button {
        position: static;
        display: inline-block;
        margin-top: 20px;
    }

    .wpcf7-form .wpcf7-field-group-add::before,
    .wpcf7-form .wpcf7-field-group-remove::before {
        display: none;
    }
}


.wpcf7-form .wpcf7-field-group input[type="number"]:focus,
.wpcf7-form .wpcf7-field-group input[type="checkbox"]:focus,
.wpcf7-form .wpcf7-field-group-add:focus,
.wpcf7-form .wpcf7-field-group-remove:focus {
    outline: 3px solid rgba(9, 19, 53, 0.2);
    outline-offset: 2px;
}


.wpcf7-form .wpcf7-field-group {
    -webkit-animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


.sub_section h3 i,
.sub_section h4 i {
    margin-right: 10px;
    color: #091335;
    font-size: 1.1em;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


label i,
.subtitle i {
    margin-right: 8px;
    color: #091335;
    font-size: 0.9em;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    opacity: 0.8;
}


.sub_section h3:hover i,
.sub_section h4:hover i {
    color: #091335;
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
}


label:hover i,
.subtitle:hover i {
    color: #091335;
    opacity: 1;
}


label:has(input:focus) i,
label:has(textarea:focus) i,
label:has(select:focus) i {
    color: #091335;
    opacity: 1;
}


.btn-submit-icon i,
.extendbutton i {
    margin-right: 8px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}


.btn-submit-icon {
    background-color: var(--e-global-color-accent);
    color: var(--e-global-color-09be854);
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: var(--e-global-typography-primary-font-family);
}

.btn-submit-icon:hover {
    background-color: var(--e-global-color-secondary);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 4px 12px rgba(97, 206, 112, 0.3);
    box-shadow: 0 4px 12px rgba(97, 206, 112, 0.3);
}

.btn-submit-icon:hover i {
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
}


.extendbutton {
    background-color: transparent;
    color: var(--e-global-color-4509628);
    border: 1px solid var(--e-global-color-15cdf76);
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: var(--e-global-typography-secondary-font-family);
}

.extendbutton:hover, .extendbutton:focus, .extendbutton:active {
    background: none !important;
}

.extendbutton:hover i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}


.custom_stuff h3 i,
.custom_stuff label i {
    color: var(--e-global-color-secondary);
    opacity: 0.7;
}


label:has([required]) {
    position: relative;
}

label:has([required])::after {
    color: var(--e-global-color-accent);
    font-weight: bold;
}


input:focus,
textarea:focus,
select:focus {
    border-color: var(--e-global-color-accent);
    outline: none;
    -webkit-box-shadow: 0 0 0 3px rgba(97, 206, 112, 0.1);
    box-shadow: 0 0 0 3px rgba(97, 206, 112, 0.1);
}


.sub_section {
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    padding: 20px;
}


@-webkit-keyframes iconFadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


@keyframes iconFadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.sub_section h3 i {
    -webkit-animation: iconFadeIn 0.6s ease forwards;
    animation: iconFadeIn 0.6s ease forwards;
}


.sub_section:nth-child(1) h3 i {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.sub_section:nth-child(2) h3 i {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.sub_section:nth-child(3) h3 i {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sub_section:nth-child(4) h3 i {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}


@media (max-width: 768px) {
    .sub_section h3 i,
    .sub_section h4 i {
        font-size: 1em;
        margin-right: 8px;
    }

    label i,
    .subtitle i {
        font-size: 0.85em;
        margin-right: 6px;
    }
}

.screen-reader-response.active {
    display: none;
}

.screen-reader-response.error-message.active {
    display: block;
}

@media (max-width: 720px) {
    .wpcf7-form .captcha-image {
        flex-wrap: wrap;
        gap: 10px;
    }
    .wpcf7-form label {
        line-height: 1.4;
    }

    .wpcf7-form .sub_section .wpcf7-form-control-wrap input {
        margin-top: 5px;
    }

    .vypocet_ceny .sub_section .row {
        gap: 0;
    }

    .serie .selector .imgradio.custominline {
        display: flex;
        gap: 5px;
    }
    .wpcf7-form .imgradio .item label {
        height: 180px;
    }
    .wpcf7-form .sub_section h3 {
        font-size: 18px;
        margin: 0;
    }

    .wpcf7-form .imgradio + .wpcf7-not-valid-tip, .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip, .wpcf7-form [data-name="typ_farby"] .wpcf7-not-valid-tip, .wpcf7-form [data-name="seria_selector"] .wpcf7-not-valid-tip, .wpcf7-form [data-name="typ_plota"] .wpcf7-not-valid-tip, .wpcf7-form [data-name="cast_oplotenia"] .wpcf7-not-valid-tip {
        font-size: 11px !important;
    }
    .wpcf7-form-control.wpcf7-radio {
        gap: 10px;
    }
    .wpcf7-form .wpcf7-list-item-label {
        font-size: 13px;
    }
    .wpcf7-form .wpcf7-list-item {
        margin: 0 !important;
    }
    .wpcf7-form .miesto_medzi_lamelami .wpcf7-list-item, .wpcf7-form .serie .wpcf7-list-item {
        padding: 2px 6px;
    }
    .wpcf7-form .imgradio .item label {
        height: auto;
        max-height: 180px;
    }
    .wpcf7-form .wpcf7-field-group > button {
        padding: 0;
    }
    .wpcf7-form .wpcf7-field-group .wpcf7-checkbox {
        gap: 5px;
        flex-direction: column;
    }
    .wpcf7-form .imgradio.color {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wpcf7-form-control-wrap {
        margin-top: 0px;
    }
    .wpcf7-form label {
        display: block;
        font-size: 16px;
        letter-spacing: 0.2px;
        text-transform: none;
    }
    .wpcf7-form .sub_section h3 {
        font-size: 18px;
        margin: 0;
        display: block;
        margin-bottom: 15px;
        padding-bottom: 5px;
    }
    .wpcf7-form .extendbutton {
        font-size: 13px;
    }
    .captcha-image {
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .wpcf7-form .imgradio {
        -ms-grid-columns: 1fr 10px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    .wpcf7-form .sub_section {
        padding: 20px 10px;
    }
    .wpcf7-form .wpcf7-list-item {
        padding: 0px;
    }
    .wpcf7-form .sub_section .wpcf7-form-control-wrap input {
        margin-top: 0;
        margin-right: 0;
    }
    .wpcf7-form-control.wpcf7-radio {
        gap: 10px !important;
    }
    .wpcf7-form-control-wrap {
        padding-top: 5px;
        display: block;
    }


}


.subsmall {
    text-transform: none;
    letter-spacing: 0.2;
    font-size: 12px;
}

.inputsinline i {
    margin: 0 !important;
}

.mce-menubar .mce-menubtn button span {
    color:white !important;
}

[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
    background-color: #151f49 !important;
    color: #fff;
}

.custom_error {
    display: block;
    width: 100%;
    position: absolute;
    background: #dc2626;
    color: white;
    padding: 5px;
    border-radius: 5px;
}