/* * {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
} */
#main-body {
	position: relative;
}

#enquiry-form {
	margin: auto;
    min-width: 260px;
    max-width: 700px;
	top: 36px;
	right: 36px;
	padding: 16px 30px;
	background-color: #fff;
	border-radius: 8px 8px 0px 0px;
	/* box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.2); */
	z-index: 1;
	font-family: 'Poppins', sans-serif;
}

#form-tagline {
	color: #444;
    text-align: center;
    margin: 28px 0px;
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
}

input, button, select {
	outline: none;
}

#name, #phone-no, #address {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 18px;
	border-radius: 5px;
	background-color: #eee;
	border: none;
	font-weight: 500;
	font-size: 16px;
}

#submit {
    margin-left: auto;
    padding: 20px 70px;
    border-radius: 5px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    background:linear-gradient(to right, #FF4502 51%,#D60509 128%);
    border: none;
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    margin-top: 35px;
    display: block;
}


#course-head-txt-engg {
	font-weight: 600;
	margin-bottom: 14px;
	margin-top: 18px;
	margin-left: 1px;
}

.courses-list-sec {
	padding: 0 10px;
}

.chkbx-sec {
	position: relative;
	padding: 2.5px 0;
	transition: opacity 0.3s, transform 0.3s;
}

.chkbx-sec:hover {
    opacity: 0.5;
}

.chkbx-sec:active {
    transform: translate(1px, 1px);
}

.chkbx-sec, 
.chkbx-sec * {
	cursor:pointer;
}

input[id|="e"] {
	transform: scale(1.5);
	position: absolute;
	top: 5px;
}

label[for|="e"] {
	margin-left: 27px;
	display: block;
}

select {
	cursor: pointer;
}

[id$="input-field-box"] {
    margin-bottom: 14px;
}

[id|="error-indicate"] {
	word-break: break-word;
	color: #f72020;
	line-height: 1.2em;
	font-size: 13.33px;
	font-weight: 500;
	margin-top: 5px;
	display: none;
	position: relative;
}

.error-symbol {
	width: 16px;
	height: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #f72020;
	border-radius: 50%;
	color: #fff;
	font-weight: bolder;
	margin-right: 5px;
	    position: absolute;
}

.error-msg {
	display: inline-block;
    margin-left: 22px;
}

#error-indicate-courses {
    margin-top: 0;
    margin-bottom: 8px;
}

#shade-body {
	display: none;
    position: fixed;
	top: 0;
    right: 0;
	bottom: 0;
	left: 0;
    height: 100%;
    width: 100%;
	z-index:3;
	align-items: center;
    justify-content: center;
}

.shade-fill-area {
	background-color: rgba(0, 0, 0, 0.7);
	height: 100%;
    width: 100%;
}

#dialog-box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    width: 350px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    font-family: sans-serif;
    border: 1px solid #ddd;
}

#dialog-box-msg {
	color: rgb(85, 85, 85);
	padding: 30px 30px 14px;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	line-height: 1.5;
}

.dialog-box-buttons {
    width: 100%;
    display: flex;
	align-items: center;
    justify-content: space-around;
}

[id|="dialog-box-button"] {
    width: 100px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    border-radius: 20px;
    margin: 10px 10px 15px;
	font-weight: 600;
	transition: filter 0.1s, background 0.2s;
}

#dialog-box-button-cancel {
	color: rgb(85, 85, 85);
	background-color: rgb(243, 243, 243);
	border: 1px solid rgb(204, 204, 204);
}

#dialog-box-button-cancel:hover {
	border: 1px solid rgb(150, 150, 150);
	color: rgb(85, 85, 85);
	background-color: rgb(255, 255, 255);
}

#dialog-box-button-ok {
	background-color: rgb(0, 103, 5);
	color: rgb(255, 255, 255);
}

#dialog-box-button-ok:hover {
	border: 1px solid rgb(0, 103, 5);
    color: rgb(0, 103, 5);
	background-color: rgb(255, 255, 255);
}

[id|="dialog-box-button"]:active {
	filter: opacity(0.3);
}

@media all and (max-width: 800px) {
	#enquiry-form {
		left: 50%;
		transform: translateX(-50%);
	}
}
@media all and (max-width: 470px) {
	#enquiry-form {
		width: 370px;
		padding-left: 24px;
		padding-right: 24px;
	}
}
@media all and (max-width: 430px) {
	#enquiry-form {
		width: 350px;
		padding-left: 18px;
		padding-right: 18px;
	}
}
@media all and (max-width: 396px) {
	#enquiry-form {
		width: 320px;
		padding-left: 14px;
		padding-right: 14px;
	}
}
@media all and (max-width: 360px) {
	#enquiry-form {
		width: 290px;
		padding-left: 16px;
		padding-right: 16px;
	}
}
@media all and (max-width: 330px) {
	#enquiry-form {
		width: 240px;
		padding-left: 16px;
		padding-right: 16px;
	}
}