#responsive-form{
	max-width:600px /*-- change this to get your desired form width --*/;
	margin:0 auto;
        width:100%;
}
.form-row{
	width: 100%;
}
.column-half, .column-full{
	float: left;
	position: relative;
	padding: 0.65rem;
	width:100%;
	-webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
}
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

/**---------------- Media query ----------------**/
@media only screen and (min-width: 48em) { 
	.column-half{
		width: 50%;
	}
}

.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 textarea {
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 3px;
	-webkit-box-sizing: border-box;
	 -moz-box-sizing: border-box;
	      box-sizing: border-box
}
.wpcf7 input[type="text"]:focus{
	background: #fff;
}
.wpcf7-submit{
	float: right;
	background: #CA0002;
	color: #fff;
	text-transform: uppercase;
	border: none;
	padding: 8px 20px;
	cursor: pointer;
}
.wpcf7-submit:hover{
	background: #ff0000;
}
span.wpcf7-not-valid-tip{
	text-shadow: none;
	font-size: 12px;
	color: #fff;
	background: #ff0000;
	padding: 5px;
}
div.wpcf7-validation-errors { 
	text-shadow: none;
	border: transparent;
	background: #f9cd00;
	padding: 5px;
	color: #9C6533;
	text-align: center;
	margin: 0;
	font-size: 12px;
}
div.wpcf7-mail-sent-ok{
	text-align: center;
	text-shadow: none;
	padding: 5px;
	font-size: 12px;
	background: #59a80f;
	border-color: #59a80f;
	color: #fff;
	margin: 0;
}

select {
    width: 100% !important;
}

input[type="submit"] {
    background: #e11d1d !important;
    width: 100% !important;
    color: #fff !important;
}

.grecaptcha-badge {
width: 70px !important;
overflow: hidden !important;
transition: all 0.3s ease !important;
left: 4px !important;
}

.grecaptcha-badge:hover {
width: 256px !important;
}

#whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #25D366;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        color: white;
        z-index: 2147483647;
    }

    #notification-bubble {
        position: absolute;
        top: 5px;
        right: 5px;
        background-color: red;
        color: white;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        font-weight: bold;
    }

    #speech-bubble {
        position: absolute;
        bottom: 10px;
        right: 70px;
        background-color: white;
        color: black;
        border-radius: 10px;
        padding: 5px 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        z-index: 2147483647;
        white-space: nowrap;
    }

    #whatsapp-popup {
        position: fixed;
        bottom: 100px;
        right: 20px;
        width: 320px;
        background-color: white;
        border: 1px solid #ccc;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        z-index: 2147483647;
    }

    .whatsapp-header {
        background-color: #25D366;
        color: white;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 10px 10px 0 0;
    }

    .whatsapp-body {
        padding: 10px;
        background-color: #f0f0f0;
        height: 260px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .whatsapp-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .whatsapp-message {
        width: 100%;
    }

    .whatsapp-message-content {
        background-color: white;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        margin-bottom: 10px;
    }

    .whatsapp-message-time {
        font-size: 0.8em;
        color: #888;
        text-align: right;
        width: 100%;
    }

    .whatsapp-footer {
        padding: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #ccc;
        background-color: #f0f0f0;
        border-radius: 0 0 10px 10px;
    }

    .whatsapp-form-close-btn {
        cursor: pointer;
    }

    .hidden {
        display: none;
    }

    .whatsapp-field {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .whatsapp-field button {
        background: none;
        border: none;
        color: #25D366;
        cursor: pointer;
    }

    .whatsapp-field .wp-emoji-input {
        font-size: 1.5em;
    }

    .whatsapp-field .whatsapp-input {
        flex-grow: 1;
        border: none;
        padding: 5px;
        margin: 0 10px;
        box-sizing: border-box;
    }

    .whatsapp-field .whatsapp-button-button {
        background: none;
        border: none;
        color: #25D366;
        cursor: pointer;
        font-size: 1.5em;
        display: flex;
        align-items: center;
        justify-content: center;
    }