/*******************************************************
 * Copyright (C) Eruvaka Technologies Pvt Ltd - All Rights Reserved
 * Unauthorized copying of this file, via any medium is strictly prohibited
 * Proprietary and confidential
 * 2021
 *******************************************************/
/*******************************************************
 * File Name: feedback.css
 *******************************************************/
.fixed_feedback {

}

.feedback_button {
    position: fixed;
    top: 30%;
    right: 0px;
    z-index: 999;
}

.feedback_button_link {
    display: inline-block;
}

.feedback_box {
    width: 350px;
    position: fixed;
    top: 15%;
    right: -350px;
    z-index:999;
    background-color: #fff;
    padding: 10px;
    border: 4px solid #ddd;
}

.feedback_box .feedback_form {
    position: relative;
}

.feedback_close_link {
    position: absolute;
    top: 0px;
    right: 5px;
}

.feedback_box span {
    color: #e74c3c;
}

.feedback_form small {
    color: #c0392b;
}

.feedback_box .success_message {
    color: #27ae60;
}

.feedback_box .error_message {
    color: #e74c3c;
}
.feedback_form_div input[type="submit"]:active, .feedback_form_div input[type="submit"]:focus{
	border: 2px solid #3498db;
	color: #3498db;
	background-color: #fff;
}
.feedback_form_div input[disabled]{
	border: 2px solid #5d5b5b;
	color: #fff;
	background-color: #5d5b5b;
}
.form-contact input[disabled]{
	border: 2px solid #999;
	color: #fff;
	background-color: #999;
}