﻿@charset "utf-8";
/* CSS Document */

/*feedback*/

#feedback {
  position: fixed;
  right: 0;
  bottom: 0;
  height: 400px;
  margin-left: -3px;
  margin-bottom: -3px;
  z-index: 5000;
}

#feedback-form {
  float: right;
  width: 500px;
  /*height: 100%;*/
  z-index: 1000;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom:10px;
  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,.5);
  -moz-box-shadow: 0 5px 10px rgba(0,0,0,.5);
  box-shadow: 0 5px 10px rgba(0,0,0,.5);
  font-size: 12px;
}

#feedback-tab {
  float: left;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  text-align: center;
  width: 50px;
  height: 50px;
  background-color: rgba(0,0,0,0.6);
  margin-top: 60px;
  /*margin-right: -42px;*/
  padding-left: 5px;
  padding-top: 2px;
  -webkit-border-top-left-radius: 50px;
  -webkit-border-bottom-left-radius: 50px;
  -moz-border-radius-topleft: 50px;
  -moz-border-radius-bottomleft: 50px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  /*-webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);*/
}

#feedback-tab:hover {
	background-color: rgba(0,0,0,0.6);
}

#feedback-form textarea {
	resize: none;
}




/* ------------------------------------------MEDIA QUERIES - ADJUSTMENTS--------------------------------------------------*/


/* Custom, iPhone Retina */
@media all and (max-width : 320px){

#feedback {
   bottom: 0px !important;
}

#feedback-form {
   width: 270px !important;
}

}

/* Extra Small Devices, Phones */
@media all and (min-width: 321px) and (max-width : 480px){

#feedback {
   top: 5px;
   margin-top: -20px;
}

#feedback-form {
	width: 310px;
}

}


/* Small Devices, Tablets */
@media all and (min-width: 481px) and (max-width : 768px){

#feedback {
   top: 5px;
   margin-top: -20px;
}

#feedback-form {
	width: 430px;
}

}

/* other */
@media all and (min-width: 769px) {

}
