.spinner {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.error{color:red;}
.feedback {
    width: 340px;
    position: fixed;
    right: 10px;
    bottom: -9999px;
    box-shadow: 0 20px 40px 8px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    border-radius: 10px 10px 0 0;
	z-index:9999999;
	background-color: #fff;
}

.feedback .feedbackHeader {
    height: 40px;
    line-height: 40px;
    border-radius: 10px 10px 0 0;
    color: #ffffff;
    text-indent: 50px;
    font-weight: normal;
    cursor: pointer;font-size:16px;
    margin:0;
    padding: 0;
}

.feedback .eMailIco {
    background: url("https://brik.searchtestsite.com/admin/img/emailIco.png") 16px center no-repeat #135fca;
    background-size: 21px auto;
}

.feedbackForm {
    padding: 16px 16px 40px 16px;
	background-color:#fff;
}

.feedbackForm .tips {
    color: #222d38;
    padding-bottom: 20px;
    margin: 0;
}

.feedbackForm .line {
    margin-bottom: 16px;
}

.feedbackForm .line input, .feedbackForm .line textarea {
    width: 100%;
    box-sizing: border-box;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    border: solid 1px #ccc;
    color: #222d38;
    display: block;
}

.feedbackForm textarea {
    resize: none;
    height: 78px;
    padding: 11px;
    line-height: 20px;
}

.feedbackForm .line input {
    height: 40px;
    line-height: 40px;
    padding: 0 11px;
}

.feedbackForm .input_b {
    background: #135fca;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    border: none;
    height: 40px;
    line-height: 40px;
    color: #fff;
    cursor: pointer;
    text-align:center;
}

.feedback .closeBtn {
    background: url("https://brik.searchtestsite.com/admin/img/closeBtn.png") no-repeat;
    width: 28px;
    height: 28px;
    background-size: 28px 28px;
    position: absolute;
    right: 10px;
    top: 6px;
    cursor: pointer;
    display: none;
}
@media (max-width: 767px) {
    .feedback{display:none;}
}