#form_button {
  background: none;
  border: solid 2px #474544;
  color: #474544;
  cursor: pointer;
  display: inline-block;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 0.875em;
  font-weight: bold;
  outline: none;
  padding: 20px 35px;
  text-transform: uppercase;
  transition: all 0.3s;
}

#form_button:hover {
  background: #474544;
  color: #f2f3eb;
}


/* search bar */
.search-bar button {
  text-align: center;
  margin: 25px auto;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid black;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  display: block;
}
#expand{
  width: 0;
  position: fixed;
  z-index: 2;
  top: 385px;
  right: 0;
  background-color: #0046FF;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  padding: 10px 25px 10px 15px;
  align-items: center;
}
#expand:hover {
  color: black;
}
#unhide{
  position: fixed;
  z-index: 1;
  top: 393px;
  right: 40px;
  background-color: white;
  margin:0;
  display:none;
}
/* Icon Styles */
.icon {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 24px;
  font-family: Arial, sans-serif;
  color: white;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}


/* Positioning */
.icon-container {
  position: fixed;
  top: 385px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 2;
}
/* facebook icon */
.facebook-icon {
  position: fixed;
  z-index: 2;
  top: 460px;
  right: 0;
}

.facebook-icon img {
  display: block;
  width: 40px;
  height: 40px;
}
  

  
/* Asista Icon */
.asista-icon {
  width: 0;
  position: fixed;
  z-index: 2;
  top: 505px;
  right: 0;
  background-color: #006600;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  padding: 3px 25px 4px 15px;
  border: 1px solid #006600;
  border-radius: 10px;
  display: block;
  width: 0;
  overflow-x: hidden;
}

.asista-icon p {
  font-family: Arial, sans-serif;
  font-size: 1.6em;
}

.asista-icon a {
  display: block;
  color: white;
  text-decoration: none;
}
.asistadiv{
  left:    0;
  right:   0;
  z-index : 1;
  filter : alpha(opacity=100);
  POSITION: fixed;
  top: 505px;
  height:50px;
  background-color:#006600;
  color:white;
  font-size:2em;
  text-align:center;
  }

  /* asista interaction */
  .hide {
    opacity: 0;
    -moz-transition: all 1000ms linear;
    -webkit-transition: all 1000ms linear;
    -o-transition: all 1000ms linear;
    transition: all 1000ms linear;
    -moz-transform: translate3d(150px, 0px, 0px);
    -webkit-transform: translate3d(150px, 0px, 0px);
    -o-transform: translate(150px, 0px);
    -ms-transform: translate(150px, 0px);
    transform: translate3d(150px, 0px, 0px);
    z-index:-1;
    }
    .show {
    opacity: 1;
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate3d(0px, 0px, 0px);
    z-index:3
    }

