
#feedback {
  position: fixed;
    right: -43px;
    bottom: 100px;
    top: 100px;
    margin-left: -3px;
    margin-bottom: -3px;
    z-index: 99999;
}


#feedback h3 {
	margin:10px 0;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
	color:#784c28;
    font-weight: 500;
	text-align:center;
}

#feedback p { text-align:center; margin:5px 0; color: #000; }



#feedback-form {
  float: left;
  width: 300px;
  height: 100%;
  z-index: 1000;
  padding-left: 5px;
  padding-right: 10px;
  margin:5px 0;
  background-color:#fff;
 /* background-clip: 'padding-box';*/
  border: 1px solid rgba(0,0,0,.2);
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
  -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
  box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.form-group input{ margin:5px 0; padding-right: 10px;}
 

#feedback-tab {
  float: left;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  text-align: center;
  width: 120px;
  height: 35px;
  background-color: rgba(0,0,0,0.5);
  margin-top: 50px;
  margin-left: -42px;
  padding-top: 5px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  
  
   -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
}

@-webkit-keyframes glowing {
  0% { background-color: #d7b56d; -webkit-box-shadow: 0 0 3px #d7b56d; }
  50% { background-color: #d7b56d; -webkit-box-shadow: 0 0 40px #d7b56d; }
  100% { background-color: #d7b56d; -webkit-box-shadow: 0 0 3px #d7b56d; }
}

@-moz-keyframes glowing {
  0% { background-color: #d7b56d; -webkit-box-shadow: 0 0 3px #d7b56d; }
  50% { background-color: #d7b56d; -webkit-box-shadow: 0 0 40px #d7b56d; }
  100% { background-color: #d7b56d; -webkit-box-shadow: 0 0 3px #d7b56d; }
}

@-o-keyframes glowing {
  0% { background-color: #d7b56d; -webkit-box-shadow: 0 0 3px #d7b56d; }
  50% { background-color: #d7b56d; -webkit-box-shadow: 0 0 40px #d7b56d; }
  100% { background-color: #d7b56d; -webkit-box-shadow: 0 0 3px #d7b56d; }
}

@keyframes glowing {
  0% { background-color: #d7b56d; -webkit-box-shadow: 0 0 3px #d7b56d; }
  50% { background-color: #d7b56d; -webkit-box-shadow: 0 0 40px #d7b56d; }
  100% { background-color: #d7b56d; -webkit-box-shadow: 0 0 3px #d7b56d; }
}







#feedback-tab:hover { background-color: rgba(0,0,0,0.4); }

#feedback-form textarea { resize: none; }
