/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
*/
.wpa_container
{
    width: 100%;
    background-color: #fada01;
    background-image: url("../images/hero.png");
    box-sizing: border-box;
    display: none;
}

.wpa_in_container
{
    width: 85%;
    margin: 0 auto;
    height:  auto;
    padding: 10px 0;
    overflow: hidden;
}

.wpa_in_container>span
{
    float: left;
    width: 4%;
    font-size: 43px;
    cursor: pointer;
    text-align: left;
}

.wpa_container_box
{
    width: 96%;
    float: right;
    background: #fff;
    height: auto;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    padding: 19px 15px;
    line-height: 24px;
    position: relative;
    text-align: left;
}

.wpa_link_view
{
    border-radius: 5px;
    float: left;
    text-align: center;
    font-size: 16px;
    padding: 5px 25px;
    color: #fff !important;
    position: absolute;
    right: 10px;
    top: 10px;
    line-height: 31px;
}

@media only screen and (max-width: 600px) {
    
  .wpa_in_container {
        width: 95%;
  }
  
  .wpa_container_box
  {
      width: 92%;
      padding: 6px 15px 6px 15px;
  }
  
  .wpa_in_container > span
  {
      width: 7%;
  }
  
  .wpa_link_view
  {
      position: relative;
      top: auto;
      right: auto;
      margin-top: 6px;
      padding: 2px 20px;
      border-radius: 3px;
  }
  
  .wpa_container_box > strong
  {
      display: block;
  }
}


