body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}

.open-button {
 position: fixed;
    left: 20px;
    bottom: 90px;
    padding: 10px;
    border-radius: 20%;
    z-index: 9999;
    background: #f6bc31;
    text-align: center;
    top: auto;
    right: auto;
    color: #fff;
    display: flex;
    font-size: 12px;
}
	.ribbon {
    width: 30px;
    font-size: 12px;
    padding: 4px;
    position: absolute;
    left: -15px;
    top: -12px;
    text-align: center;
    border-radius: 25px;
    transform: rotate(-20deg);
    background-color: #d50021;
    color: white;
}
.open-button .fas {
    font-size: 20px;
    width: 20px;
    height: 20px;
    display: block;
    animation: JTswing 5s infinite ease;
    margin: auto;
	color:#fff;
}
.radio-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 15px;
  border: 3px solid #f1f1f1;
  z-index: 9999;
  text-align:right;
	
}

.form-container {
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

.form-container textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
  resize: none;
  min-height: 200px;
}

.form-container textarea:focus {
  background-color: #ddd;
  outline: none;
}

.form-container .btn {
  background-color: #04AA6D;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

.form-container .cancel {
  background-color: red;
}

.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}

.img-x{
	padding:5px;
}
