/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
	z-index: 999;
}

.modal-content {
    background-color: #fff;
    margin: 8% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
}

.close {
    float: right;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    width: 60px;
    justify-content: space-between;
}
span.closetext {
    font-size: 15px;
}
.product_enquer_form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 0;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
#contactForm .col-md-6 {
    width: 50%;
    padding: 0 15px;
	padding-bottom: 15px;
}
#contactForm .col-md-12 {
    width: 100%;
    padding: 0 15px;
	padding-bottom: 15px;
}
#contactForm  input[type="submit"] {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 25px 10px 25px;
    cursor: pointer;
    border-radius: 20px;
    display: inline-block;
    width: auto;
    text-transform: uppercase;
	position: relative;
}

.product_enquer_form h2 {
    font-size: 16px;
    font-weight: 700;
}
.product_enquer_form h3 {
    font-weight: normal;
    margin-bottom: 25px;
}



/* Form Styles (You can customize these) */
form {
    text-align: left;
}

label,
input,
textarea {
    display: block;
    margin-bottom: 3px;
	font-size: 14px;
}
input,
textarea {
    border: 1px solid black;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
}

input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

@media screen and (max-width: 800px) {
	#contactForm .col-md-6 {
    width: 100%;
}
.modal-content {
    width: 90%;
}
	
}
