/* General */
.ef-position-right .extra-feedback-form-container, 
.ef-position-left .extra-feedback-form-container,
.ef-position-top .extra-feedback-form-container,
.ef-position-bottom .extra-feedback-form-container {
	display: none;
}
.extra-feedback-from-wrapper.ef-position-left,
.extra-feedback-from-wrapper.ef-position-right,
.extra-feedback-from-wrapper.ef-position-top,
.extra-feedback-from-wrapper.ef-position-bottom {
    overflow: visible;
    position: fixed;
    white-space: nowrap;
	z-index: 999;
}
.extra-feedback-from-wrapper.ef-position-right {
	right: 0;
	top: 50%;
}
.extra-feedback-from-wrapper.ef-position-left {
	left: 0;
	top: 50%;
}
.extra-feedback-from-wrapper.ef-position-top {
	top: 0;
	left: 50%;
}
.extra-feedback-from-wrapper.ef-position-bottom  {
	bottom: 0;
	right: 5%;
}
.extra-feedback-button {
    display: inline-block;
	cursor: pointer;
}
.ef-position-left .extra-feedback-button-wrapper {
	-ms-transform-origin: 30px 30px 0;
	-webkit-transform-origin: 30px 30px 0;
	transform-origin: 30px 30px 0;
	-ms-transform:: rotate(270deg);
	-webkit-transform: rotate(270deg);
	transform: rotate(270deg);
}
.ef-position-right .extra-feedback-button-wrapper {
	transform-origin: 79px 79px 0;
	transform: rotate(-270deg);
}
.extra-feedback-form-container {
    position: absolute;
}
.ef-position-left .extra-feedback-form-container {
    left: 50px;
    margin-top: -75%;
}
.ef-position-top .extra-feedback-form-container {
	margin-top: 10px;
}
.ef-position-right .extra-feedback-form-container {
	right: 50px;
    margin-top: -75%;
}
.ef-position-bottom .extra-feedback-form-container {
	bottom: 35px;
	right: 0;
}

/* Customizable */
.extra-feedback-button {
    padding: 5px 15px;
	border-radius: 0 0 5px 5px;
	background: #e5e5e5;
}
.ef-position-bottom .extra-feedback-button {
	border-radius: 5px 5px 0 0;
}
.extra-feedback-form-container {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
}
.ef-form-title {
	font-weight: bold;
	margin-bottom: 10px;
}
.ef-form-description {
	margin-bottom: 10px;
}
.ef-field-wrapper {
	margin-bottom: 5px;
}
.ef-field-type-checkbox .ef-field {
    float: left;
    margin: -3px 5px 0 0;
}
.ef-field input, .ef-field textarea {
	background: #FFF;
}
.ef-buttons {
	text-align: right;
}
.ef-required {
    color: #ff0000;
    font-weight: bold;
}
.ef-position-content .extra-feedback-form-container {
    float: left;
    position: static;
}