/*
 * bootstrap-feedback-form 21.08.2016 (https://github.com/spektom/bootstrap-feedback-form) Copyright
 * (c) 2016, Michael Spector
 * File modified! Source licence:
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#feedback {
  position: fixed;
  left: 0;
  height: 250px;
  top: 100px;
  margin-left: -3px;
  z-index: 1000;
}

#feedback-form {
  float: left;
  width: 300px;
  z-index: 1005;
  padding-left: 5px;
  padding-right: 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, .2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}

#feedback-tab {
  float: right;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
  width: 120px;
  height: 42px;
  background-color: rgba(83, 151, 0, 0.6);
  margin-top: 60px;
  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);
  text-shadow: none;
  background-image: none;
  color: #FFFFFF !important;
  border-color: #FFFFFF;
  background-color: #539700;
}

#feedback-tab:hover {
  background-color: rgba(83, 151, 0, 0.6);
  background-color: #B7F46E;
  border-color: #000000;
  color: #000000 !important;
}

#feedback-form textarea {
  resize: none;
}

@media ( max-width : 768px) {
  #feedback {
    margin-left: -14px;
    position: absolute;
    bottom: 108px;
    top: auto;
    
  }
  #feedback-tab {
    font-size: 14px;
    height: 25px;
    margin-left: 0;
     padding-top: 0;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
     -o-transform: unset;
     transform: unset;
     bottom: -50px;
     position: absolute;
  }
}