.wpaas-feedback-modal__container {
	position: fixed;
	width: 468px;
	height: auto;
	min-height: 415px;
	right: 20px;
	bottom: 25px;

	display: flex;
	flex-direction: column;
	justify-content: flex-start;

	font-size: 13px;

	color: #3c434a;
	background: #FFFFFF;

	box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.15);
	border-radius: 8px;

	z-index: 9999999;

	padding: 32px;
	box-sizing: border-box;

	animation: slideUp ease 0.3s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

@media only screen and (max-width: 782px) {
  .wpaas-feedback-modal__container {
		display: none;
	}
}

.wpaas-feedback__textarea__container {
	position: relative;
}

.wpaas-feedback__textarea__count {
	text-align: left;
	font-size: 10px;
	margin: 0;
}

.wpaas-feedback__textarea__count-bold {
	text-align: left;
	font-size: 10px;
	margin: 0;
	font-weight: 600;
}

@keyframes slideUp {
	0% {
		transform: scale(0.95) translateY(20px);
	}
	100% {
		transform: scale(1) translateY(0);
	}
}

.wpaas-feedback-modal__container .components-radio-control__input[type=radio] {
	height: 24px;
	width: 24px;
	border-radius: 50%;
	-webkit-appearance: none;
	border: 1px solid #8c8f94;
	cursor: pointer;
}

.wpaas-feedback-modal__container .components-radio-control__input[type=radio]:checked {
	background: #00a4a6;
	border-color: #00a4a6;
}

.wpaas-feedback-modal__container .components-radio-control__input[type=radio]::before {
	content: "";
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0;
  background-color: white;
  line-height: 1.14285714;
	transform: translate(-7px,7px);
	float: right;
}

.wpaas-feedback-modal__container .components-button {
	background-color: #111;
	color: #fff;
	border-radius: 0;
	height: 36px;
	padding: 6px 12px;
	border: none;
	cursor: pointer;
}

.wpaas-feedback-modal__container .components-button:hover {
	background-color: #00a4a6 !important;
}

.wpaas-feedback-modal__container .components-button:disabled:hover {
	cursor: not-allowed;
	background-color: #111 !important;
}

.wpaas-feedback-modal__container .components-button:disabled {
	opacity: 0.4;
}

.wpaas-feedback-modal__container .components-radio-control__input[type=radio]:focus {
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #00a4a6;
}



.wpaas-feedback__success {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 20%;
}

.wpaas-feedback__success__header {
	font-size: 16px;
	font-weight: 500;
	color:  black;
	margin-bottom: 60px;
}

.wpaas-feedback-modal__header {
	height: auto;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.wpaas-feedback-modal__header__close {
	cursor: pointer;
}

.wpaas-feedback-modal__content {
	height: 80%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.wpaas-feedback__question-label {
	font-weight: 550;
	font-size: 0.9rem;
	line-height: 24px;
}

.wpaas-feedback__question-container {
	width: 100%;
}

.wpaas-feedback__question-container .components-v-stack {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.wpaas-feedback__question-container .components-radio-control {
	margin-top: 10px;
}

.wpaas-feedback__question-container .components-radio-control .components-base-control__field {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.wpaas-feedback__question-container .components-radio-control .components-base-control__field .components-radio-control__option {
	display: flex;
	flex-direction: column-reverse;
	justify-content: space-between;
	align-items: center;

	margin-bottom: 0;
}

.wpaas-feedback__question-container .components-radio-control .components-base-control__field .components-radio-control__option input {
	margin: 5px 0 0;
}

.wpaas-feedback__question-container.contact {
	margin-bottom: 1em;
}

.wpaas-feedback__question-container.contact .components-radio-control .components-base-control__field {
	display: block;
}

.wpaas-feedback__question-container.contact .components-radio-control .components-base-control__field .components-radio-control__option {
	display: inline-block;
	width: 20%;
}

.wpaas-feedback__question-container.contact .components-radio-control .components-base-control__field .components-radio-control__option input {
	margin: 0 0 0 5px;
	vertical-align: middle;
}

.wpaas-feedback__question-container.contact .components-radio-control .components-base-control__field .components-radio-control__option label {
	font-weight: 600;
}

.wpaas-feedback__survey-question__labels {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.wpaas-feedback__question-container textarea {
	resize: none;
	width: 100%;
	height: 70px;
	margin-top: 10px;
	padding: 2px 6px;
	box-sizing: border-box;
}

.wpaas-feedback__question-container textarea:focus {
	border-color: #00a4a6;
	box-shadow: 0 0 0 1px #00a4a6;
	border-style: solid;
	outline: none;
	border-radius: 4px;
}

.wpaas-feedback__submit-form {
	width: 100%;

	padding: 16px 0 0;

	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
