@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

body { background:rgb(30,30,40); }
form { max-width:420px; margin:50px auto; }

.feedback-input {
  color:white;
  font-family: Helvetica, Arial, sans-serif;
  font-weight:500;
  font-size: 18px;
  border-radius: 5px;
  line-height: 22px;
  background-color: transparent;
  border:1px solid #fff;
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width:100%;
  box-sizing: border-box;
  outline:0;
}

.feedback-input:focus { border:2px solid #d41616; }

textarea {
  height: 100px;
  line-height: 100%;
  resize:vertical;
}

[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  width: 100%;
  background:#c21717;
  border-radius:5px;
  border:0;
  cursor:pointer;
  color:white;
  font-size:24px;
  padding-top:10px;
  padding-bottom:10px;
  transition: all 0.3s;
  margin-top:-4px;
  font-weight:700;
}
[type="submit"]:hover { background:#c41313; }

.roomreserv
{
  display:inline-flex;
  width:100%;
  justify-content: flex-start;
  align-items: center;

}

.roomreserv li{
  list-style-type: none;
  display:inline-flex;
  justify-content: center;
  align-items: center;
  width:25px;
  height:25px;
  /* border:1px solid red;
  border-radius: 50%; */
  /* margin:0 10px; */
  margin-right: 10px;
}
.roomreserv li i{
  width:100%;
  /* height:100%; */
  padding:10px ;
  padding-left: 3px;
  color:red;
  

}
.displaytext{
  display:block;
  color:red;
  opacity: 0;
  /* z-index:1; */
}
.roomreserv li i:hover {
  cursor: pointer;
  
}
li i:hover .displaytext{
  visibility: visible;
  opacity: 1;
  color:rgb(243, 9, 9);
}