/*
Demo Form Css
 */
#rdForm input {
    color:#3c3c3c;
    border:none;
 background-color:#fff;
    border-radius: 5;
	transition:box-shadow .15s ease-out;
}
#rdForm input[type="text"]:focus,#rdForm input[type="email"]:focus,#rdForm input[type="tel"]:focus {
    box-shadow: inset 0 -2px 0 0 #f8aa29;
}
#rdForm label {
    color:#3c3c3c;
    margin-top: 20px;
    display: block;
}
#rdForm select {
    color:#3c3c3c;
	background-color:#fff;
	border:none;
}
#rdForm .checkFlex {
    display: flex;
    align-items: center;
    height: 50px;
    margin-top: 20px;
}
#rdForm input[type="checkbox"] {
    accent-color: #1364fa;
}
#rdForm .checkFlex p {
    color: #3c3c3c;
    margin-top: 24px;
    margin-left: 10px;
}
#rdForm input[type="submit"] {
    background-color:#3CC1DD;
    margin-top: 40px;
	width:100%;
	color:#fff;
	font-size:12px;
	font-weight:700;
	border-radius:5px;
	padding:5px 15px;
	height:36px;

}
#rdForm input[type="submit"]:hover {
 background-color:rgb(147, 52, 179);
	transform:none;
}
.hide-class {
    display: none;
}
/*
Footer Form Css -----------------------------------------------------------------------------
 */
#footerFormId {
    display: flex;
    flex-wrap: wrap;
}
#footerFormId .rd-formInput {
    width: 100%;
    max-width: 150px;
    border-right: none !important;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.rdFooterFormContainer {
    width: 100%;
}
#checkField {
    width: 100%;
    display: flex;
    align-items: first baseline;
}
.rd-formCheckbox {

    margin-top: 2px;
}
#checkField p {
    font-size: 12px;
}
.rd-formSubmit {
    max-width: 100px;
    font-size: 12px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: 1px solid;
    margin-bottom: 5px;
}
.rd-formHead {
    color:#ffffff;
}