/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

/*CSS for form Qn Energy */
 .header-main {
 	display: none !important;
 }
 .form-container {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        width: 66%; /* 2/3 van de breedte */
        max-width: 800px;
        margin: 0 auto;
    }
    
    @media (max-width: 1024px) { /* Voor tablets en kleinere schermen */
        .form-container {
            width: 95%;
        }
    }
    
    .form-container h2 {
        text-align: center;
    }
    label {
        display: inline-block; /* Zorgt ervoor dat label en veld naast elkaar staan */
        margin-bottom: 2px; /* Verklein de afstand tussen label en veld */
        font-weight: bold;
    }
    input, textarea {
        width: 100%;
        padding: 8px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    textarea {
        height: 80px;
        resize: none;
    }
    input[type="submit"] {
        background: #134d54;
        color: white;
        border: none;
        cursor: pointer;
        padding: 10px;
        font-size: 16px;
        border-radius: 5px;
    }
    input[type="submit"]:hover {
        background: #0f3b40;
    }

button.single_add_to_cart_button.button.alt {
    background-color: #16A22C !important;
}

@media (max-width: 768px) {
        #popupForm div {
            width: 100%;
            max-width: 95%;
            padding: 20px;
        }

        #popupForm form {
            grid-template-columns: 1fr;
        }

        #closePopup {
            font-size: 20px;
        }
    }

    @media (max-width: 480px) {
        #popupForm div {
            width: 100%;
            max-width: 90%;
            padding: 15px;
        }

        #popupForm form {
            grid-template-columns: 1fr;
        }

        #closePopup {
            font-size: 18px;
        }
    }


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}