/*
Theme Name: ProTint PDX
Theme URI: https://protintpdx.com/
Description: Premium window tinting theme for Genesis Framework
Author: ProTint PDX
Author URI: https://protintpdx.com/
Version: 1.0.0
Template: genesis
Text Domain: protint-pdx
*/

/* ============================================================================
   Table of Contents
   1. Porsche Style Variables
   2. Base Styles & Reset
   3. Genesis Header Integration
   4. Mobile Menu Styles
   5. Hero Section
   6. Brand Strip
   7. Section Container & Titles
   8. Products Grid
   9. Two Column Layout
   10. Features Grid
   11. Gallery Grid
   12. Contact Section
   13. Footer
   14. Responsive Styles
   ============================================================================ */

/* ============================================================================
   1. Porsche Style Variables
   ============================================================================ */

:root {
    --porsche-red: #d5001c;
    --porsche-red-dark: #b00018;
    --porsche-gray: #f5f5f5;
    --porsche-dark: #1a1a1a;
    --porsche-border: rgba(255, 255, 255, 0.1);
}

/* ============================================================================
   2. Base Styles & Reset
   ============================================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

html {
    scroll-behavior: smooth;
}

/* Override Genesis default body background */
.site-container {
    background: #000000;
}

/* Override Genesis link colors */
a {
    color: var(--porsche-red);
    text-decoration: none;
}

a:hover {
    color: var(--porsche-red-dark);
}

/* Site Inner Override - remove padding when using our sections */
.site-inner {
    padding: 0;
    max-width: 100%;
}

/* Full width content */
.full-width-content .content {
    width: 100%;
    max-width: 100%;
}

/* Entry content overrides */
.entry-content {
    padding: 0;
}

.entry {
    margin-bottom: 0;
}

/* Remove Genesis default borders */
.entry-footer .entry-meta {
    border-top: none;
}

/* ============================================================================
   3. Genesis Header Integration
   ============================================================================ */

/* Override Genesis Site Header to match ProTint style */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 18px 48px;
    background: rgba(0, 0, 0, 0.95);
}

/* Title Area / Logo */
.site-header .title-area {
    float: left;
    padding: 0;
    margin: 0;
}

.site-header .site-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1;
}

.site-header .site-title a,
.site-header .site-title a:hover,
.site-header .site-title a:focus {
    color: #ffffff;
    text-decoration: none;
}

.site-header .site-title span {
    color: var(--porsche-red);
    font-weight: 800;
}

/* Hide Genesis site description */
.site-header .site-description {
    display: none;
}

/* Navigation Container - Desktop */
.site-header .nav-primary {
    float: right;
    clear: none;
    padding: 0;
    background: transparent;
}

.site-header .genesis-nav-menu {
    clear: none;
    line-height: 1;
    display: flex;
    gap: 40px;
    align-items: center;
}

.site-header .genesis-nav-menu .menu-item {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.site-header .genesis-nav-menu a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 0;
    text-decoration: none;
    transition: color 0.2s ease;
    background: transparent;
}

.site-header .genesis-nav-menu a:hover,
.site-header .genesis-nav-menu a:focus {
    color: var(--porsche-red);
    background: transparent;
}

/* Free Quote Button in Navigation */
.site-header .genesis-nav-menu .free-quote-btn a,
.free-quote-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 10px 24px !important;
    font-weight: 600;
    font-size: 13px;
    border-radius: 0;
    transition: all 0.2s ease;
    display: inline-block;
}

.site-header .genesis-nav-menu .free-quote-btn a:hover,
.free-quote-btn:hover {
    background: var(--porsche-red);
    border-color: var(--porsche-red);
    color: #fff;
}

/* ============================================================================
   4. Mobile Menu Styles - Slide-out from Right
   ============================================================================ */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    position: relative;
    float: right;
    margin-left: 15px;
}

.mobile-menu-toggle .hamburger {
    width: 30px;
    height: 24px;
    position: relative;
    display: block;
}

.mobile-menu-toggle .hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 0;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.25s ease-in-out;
}

.mobile-menu-toggle .hamburger span:nth-child(1) {
    top: 0px;
}

.mobile-menu-toggle .hamburger span:nth-child(2) {
    top: 10px;
}

.mobile-menu-toggle .hamburger span:nth-child(3) {
    top: 20px;
}

/* Active state - transforms to X */
.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    left: -30px;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1003;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Panel - Slide from Right */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -70%;
    width: 70%;
    max-width: 400px;
    height: 100%;
    background: #0a0a0a;
    z-index: 1004;
    padding: 80px 30px 40px;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--porsche-border);
}

.mobile-menu-panel.active {
    right: 0;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    transition: color 0.2s;
}

.mobile-menu-close:hover {
    color: var(--porsche-red);
}

/* Mobile Menu Navigation Links */
.mobile-menu-panel .genesis-nav-menu,
.mobile-menu-panel .menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-panel .genesis-nav-menu li,
.mobile-menu-panel .menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.mobile-menu-panel .genesis-nav-menu a,
.mobile-menu-panel .menu a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 0;
    display: block;
    text-decoration: none;
    transition: color 0.2s;
    background: transparent;
}

.mobile-menu-panel .genesis-nav-menu a:hover,
.mobile-menu-panel .menu a:hover {
    color: var(--porsche-red);
}

/* Mobile Menu Free Quote Button */
.mobile-menu-panel .free-quote-btn-mobile {
    margin-top: 30px;
}

.mobile-menu-panel .free-quote-btn-mobile a {
    background: var(--porsche-red);
    color: #fff;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    display: block;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
}

.mobile-menu-panel .free-quote-btn-mobile a:hover {
    background: var(--porsche-red-dark);
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* ============================================================================
   5. Hero Section
   ============================================================================ */

.hero {
    position: relative;
    height: 94vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg video,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tag {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--porsche-red);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    max-width: 700px;
    color: #fff;
}

.hero p {
    font-size: 18px;
    color: #e0e0e0;
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-radius: 0;
}

.btn-primary {
    background: var(--porsche-red);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: var(--porsche-red-dark);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* ============================================================================
   6. Brand Strip
   ============================================================================ */

.brand-strip {
    padding: 32px 48px;
    background: #0a0a0a;
    border-bottom: 1px solid var(--porsche-border);
}

.brand-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-item img {
    height: 36px;
    width: auto;
    opacity: 0.8;
}

.brand-item span {
    color: #888;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ============================================================================
   7. Section Container & Titles
   ============================================================================ */

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 48px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: #fff;
}

.section-title p {
    color: #888;
    font-size: 16px;
}

/* ============================================================================
   8. Products Grid
   ============================================================================ */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: #111;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: block;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 24px;
    background: #111;
}

.product-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.product-info p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================================================
   9. Two Column Layout
   ============================================================================ */

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse .col {
    direction: ltr;
}

.col h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: #fff;
}

.col p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 14px;
    list-style-type: none;
}

.feature-list i {
    color: var(--porsche-red);
    width: 20px;
}

.col img {
    width: 100%;
    border-radius: 0;
}

/* Popular Badge */
.popular-badge {
    display: inline-block;
    background: var(--porsche-red);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* ============================================================================
   10. Features Grid
   ============================================================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: #111;
    border: 1px solid var(--porsche-border);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--porsche-red);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 40px;
    color: var(--porsche-red);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #fff;
}

.feature-item p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================================================
   11. Gallery Grid
   ============================================================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(213, 0, 28, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    text-align: center;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

/* ============================================================================
   12. Contact Section
   ============================================================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(213, 0, 28, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 22px;
    color: var(--porsche-red);
}

.contact-text h4 {
    font-size: 14px;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 6px;
}

.contact-text p {
    color: #fff;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #111;
    border: 1px solid var(--porsche-border);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--porsche-red);
}

.submit-btn {
    background: var(--porsche-red);
    color: #fff;
    padding: 14px 32px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
    border-radius: 0;
}

.submit-btn:hover {
    background: var(--porsche-red-dark);
    color: #fff;
}

/* ============================================================================
   13. Footer
   ============================================================================ */

.site-footer {
    background: #050505;
    border-top: 1px solid var(--porsche-border);
    padding: 0;
}

.footer {
    background: #050505;
    padding: 60px 48px 40px;
    border-top: 1px solid var(--porsche-border);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--porsche-red);
}

.footer p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

.footer h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #fff;
}

.footer-links a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--porsche-red);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.social-icon a {
    color: #fff;
    font-size: 16px;
}

.social-icon:hover {
    background: var(--porsche-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--porsche-border);
    color: #666;
    font-size: 12px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================================================
   14. Responsive Styles
   ============================================================================ */

/* Tablet adjustments */
@media (min-width: 801px) and (max-width: 1024px) {
    .site-header .genesis-nav-menu {
        gap: 20px;
    }
    
    .section-container {
        padding: 80px 32px;
    }
    
    .products-grid,
    .features-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile adjustments (max-width: 800px) */
@media (max-width: 800px) {
    /* Hide desktop navigation */
    .site-header .nav-primary {
        display: none !important;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Adjust header padding */
    .site-header,
    .site-header.scrolled {
        padding: 16px 20px;
    }
    
    /* Adjust logo size */
    .site-header .site-title {
        font-size: 20px;
    }
    
    /* Hero section */
    .hero {
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        text-align: center;
        justify-content: center;
    }
    
    /* Section adjustments */
    .section-container {
        padding: 60px 20px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    /* Grid layouts to single column */
    .products-grid,
    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Two column to single */
    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Brand strip */
    .brand-strip {
        padding: 20px;
    }
    
    .brand-container {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Gallery overlay text */
    .gallery-overlay h4 {
        font-size: 14px;
    }
    
    .gallery-overlay p {
        font-size: 11px;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .col h2 {
        font-size: 28px;
    }
    
    .product-info h3 {
        font-size: 18px;
    }
}
.entry-header,
p.site-title,
.menu-toggle {
	display:none;
}
/* ============================================================================
   Contact Form 7 - Placeholder Only Style
   ============================================================================ */

/* Form Container */
.wpcf7-form {
    width: 100%;
}

/* Form Fields */
.wpcf7-form input,
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border-radius: 0;
    transition: all 0.2s ease;
    margin-bottom: 16px;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #d5001c;
}

/* Placeholder Styling */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: #888;
    font-weight: 400;
}

/* Select Dropdown Styling */
.wpcf7-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    cursor: pointer;
}

.wpcf7-form select option {
    background: #111;
    color: #fff;
}

/* Submit Button */
.wpcf7-submit {
    background: #d5001c;
    color: #fff;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    letter-spacing: 1px;
}

.wpcf7-submit:hover {
    background: #b00018;
}

/* Responsive Row Layout */
.protint-form-row.two-columns,
.protint-form-row.three-columns {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}

.protint-form-field {
    flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .protint-form-row.two-columns,
    .protint-form-row.three-columns {
        flex-direction: column;
        gap: 0;
    }
    
    .wpcf7-form input,
    .wpcf7-form select,
    .wpcf7-form textarea {
        padding: 14px 16px;
    }
}

/* Success/Error Messages */
.wpcf7-response-output {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px 20px;
    margin-top: 20px;
    text-align: center;
}

.wpcf7-not-valid-tip {
    color: #d5001c;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
    display: block;
}

.wpcf7-spinner {
    display: none;
}