/********************** SUGGEST A BOOK   **************************/

/********************** START ADD SUGGESTION BUTTON **************************/

.btn-plus {
  width: 40px;
  height: 40px;
  background-color: #FFF;
  transition: background-color 1s; /* Added */
  margin:0;
  padding:0;
}

.plus {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  top: 10px;
  left: 10px;
  overflow: hidden;
  transition: transform 1s; /* Added */
}

.plus::before,
.plus::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #245ca6;
}

.plus::before {
  transform: rotate(0deg);
}

.plus::after {
  transform: rotate(90deg);
}

/* Added the below code */
.btn-plus:hover {
  background-color: #FFF;
}

/*
.btn-plus:hover .plus {
transform: rotate(-135deg);
}

*/

/* And removed all other code */

/********************** END ADD SUGGESTION BUTTON **************************/

/********************** START ADD SUGGESTION MODAL **************************/

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: #CCC;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}


/********************** END ADD SUGGESTION MODAL **************************/

/********************** START ADD SUGGESTION TABLE **************************/

.tblSugg { background-color:#FFF; /* #F7F7F7 */ margin: 10px auto;    }
.tblSugg tr td{height:20px;padding: 5px; color:#245ca6;}
.tblSugg tr td select,input{ font-size:14px; height:auto;  width:400px; border-radius:5px;}
.tblSugg tr td textarea{width:500px; height:150px;}

.tblSugg button
{
  border-radius: 8px;
  border: none;
  color: white;
  padding: 7px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
  cursor: pointer;
  width:80px;
  background-color:#245ca6;

}

.tblSugg button:hover,active
{background-color:#069e2d;}

/********************** END ADD SUGGESTION TABLE   **************************/
