@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.feedbackform {
	width:auto;
	margin: auto;
}
.feedbackform hr{
	margin-top: 20px;
	margin-bottom: 20px;
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: dotted;
	border-left-style: none;
	border-bottom-color: #CCC;
}
/****************************************************************/
::-webkit-input-placeholder {font-family:Montserrat; color:#66666690; font-size: 12px; font-weight: 600;}
:-moz-placeholder {font-family:Montserrat; color:#66666690; font-size: 12px; font-weight: 600;}
::-moz-placeholder {font-family:Montserrat; color:#66666690; font-size: 12px; font-weight: 600;}
:-ms-input-placeholder {font-family:Montserrat; color:#66666690; font-size: 12px; font-weight: 600;}

/****************************************************************/
.feedbackform input[type=text],
.feedbackform input[type=number],
.feedbackform input[type=tel],
.feedbackform input[type=email],
.feedbackform input[type=date],
.feedbackform input[type=file],
.feedbackform input[type=submit],
.feedbackform textarea,
.feedbackform select,
#captcha
{
	border: 1px solid #CCC;
	border-radius:5px;
	padding: 10px;
	margin-top:5px;
	margin-bottom:5px;
	outline:none;
	box-sizing : border-box;
	width: 100%;
	-webkit-appearance: none;
	}
.feedbackform .margin_right{
	margin-right:5px;
	}
.feedbackform .dua{width:50%;}

#AntiSpam {
	border: 1px solid #CCC;
	border-radius:5px;
	padding: 10px;
	margin-top:5px;
	margin-bottom:5px;
	outline:none;
	box-sizing : border-box;
	text-align: center;
	/* width: 100%; */
	-webkit-appearance: none;
}
	
/****************************************************************/
.feedbackform flex{
	display: -webkit-flex; /* Safari */
  display: flex;
	}

@media only screen and (max-width: 540px) {
.feedbackform flex{
  display: block;
	}
.feedbackform .margin_right{
	margin-right:0px;
	}	
	
}
/****************************************************************/
.feedbackform input[type=submit]{
	color: #FFF;
	background-color: #069;
	cursor:pointer;
	font-family:Montserrat;
	font-weight: 700;
}

/****************************************************************/
.feedbackform #captcha{
	background-image: url(feedback/captcha.gif);
	background-size: cover;
	color:#00000085;
	font-family:Montserrat;
	font-weight: 500;
	text-align: center;
	/* disable select */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-size:18px;

}

/* uwu */
.uwu-form {
	text-align: center;
	margin-top: 5px;
    margin-bottom: 5px;
	border: 2px solid #CCC;
    border-radius: 5px;
}

/****************************************************************/
/* Submit action buttons (Email / WhatsApp)                     */
.feedbackform .button-group {
	display: -webkit-flex;
	display: flex;
	gap: .75rem;
	flex-wrap: wrap;
	margin-top: 1.25rem;
}
.feedbackform .button-group button {
	flex: 1 1 160px;
	border-radius: 50px;
	padding: .72rem 1.6rem;
	font-family: "Montserrat", sans-serif;
	font-size: .95rem;
	font-weight: 700;
	letter-spacing: .2px;
	border: none;
	cursor: pointer;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	transition: background .25s ease, transform .15s ease, box-shadow .25s ease;
}
.feedbackform .button-group button[type="button"]:nth-child(1) {
	background: #2563eb;
	color: #fff;
	box-shadow: 0 10px 24px rgba(37, 99, 235, .28);
}
.feedbackform .button-group button[type="button"]:nth-child(1):hover {
	background: #1d4ed8;
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(37, 99, 235, .34);
}
.feedbackform .button-group button[type="button"]:nth-child(2) {
	background: #25d36e;
	color: #fff;
	box-shadow: 0 8px 20px rgba(37, 211, 110, .30);
}
.feedbackform .button-group button[type="button"]:nth-child(2):hover {
	background: #20b85a;
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(37, 211, 110, .36);
}
.feedbackform .button-group button iconify-icon {
	font-size: 1.1rem;
}

/****************************************************************/
/* Product select focus accent */
.feedbackform select {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	color: var(--keep-dark, #15171a);
}
.feedbackform select:focus {
	border-color: var(--keep-red, #d62828);
	box-shadow: 0 0 0 .2rem rgba(214, 40, 40, .15);
}