.feedbackForm {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
}

.feedbackForm__grid2 {
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.feedbackForm .feedbackForm__required {
	color: #ED5338;
}

.feedbackForm .feedbackForm__elem {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.feedbackForm input {
	height: 45px;
	width: 100%;
	border-radius: 15px;
	padding: 15px;
	border: 1px solid #DBDBDB;
	font-size: 1.6rem;
	transition: all 0.3s;
}

.feedbackForm textarea {
	height: 100%;
	width: 100%;
	border-radius: 15px;
	padding: 15px;
	border: 1px solid #DBDBDB;
	font-size: 1.6rem;
	resize: none;
	transition: all 0.3s;
}

.feedbackForm input:focus, textarea:focus {
	border-color: #e84a36;
	outline: none;
	transition: all 0.3s ease;
	right: 0;
	width: 100%;
	background: #fafafa;
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-box-shadow: inset 0 0 0 1px #eeeeee;
	box-shadow: inset 0 0 0 1px #eeeeee;
}

.feedbackForm__red {
	outline: 1px solid red !important;
	border-radius: 15px;
}

/* SELECT 2 */
.select2-container {
	width: 100% !important;
}

.select2-dropdown {
	font-size: 1.6rem;
}

.select2-container--default .select2-selection--single {
	height: 45px !important;
	border-radius: 15px !important;
	padding: 15px;
	border: 1px solid #DBDBDB !important;
	transition: all 0.3s;
}

.select2-container--default .select2-selection--single:hover {
	box-shadow: 2px 2px 3px 0px #d3d3d3;
	transition: all 0.3s;
}

.select2-results__option[aria-selected] {
	font-size: 1.5rem !important;
}

.select2-dropdown {
	top: -10px !important;
}

.select2-results__option {
	padding: 0px 13px !important;
	font-size: 1.5rem !important;
}

.select2-search--dropdown .select2-search__field {
	font-size: 1.5rem !important;
	padding: 5px 15px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
	padding-left: 1px !important;
}

.select2-selection__arrow {
	top: 10px !important;
	right: 10px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
	line-height: 15px !important;
}
.select2-dropdown
{
	border: 1px solid #DBDBDB;
}

.select2-results li{
	height: 45px !important;
	padding: 15px !important;
	line-height: 15px !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: #757575;
}
.swal2-styled.swal2-confirm{
	background: #e84a36 !important;
}
/* SELECT 2 END */

.feedbackForm__allow {
	cursor: pointer;
	transition: all 0.3s;
}

.feedbackForm__allow:hover {
	opacity: 0.8;
	transition: all 0.3s;
}