.bingads {
    display: none;
    background-color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    padding: 40px 40px 30px 40px;
    min-width:650px;
  }
  .bingads .content{
    text-align: center;
  }
  .bingads .content p{
    line-height: 2;
    color: rgba(0,0,0,0.87);
  }
  
  .bingads .content .bingtext{
    margin-bottom: 40px;
    margin-top: 40px;
  }
  
  .bingads .content img{
    min-width: 215px;
  }
  
  .bingborder{
    width: 100%;
    border-bottom: 1px solid #EBEBEB;
  }
  .bingbuttons{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
  }
  .bingbuttons .bingdecline{
    height: 55px;
    width: 50%;
    max-width: 274px;
    display: flex;
    align-items: center;
    font-size: 1.125em;
    cursor: pointer;
    background: #fff;
    justify-content: center;
    color: rgba(0,0,0,0.87);
    border: 1px solid #EBEBEB;
    margin-right: 5px;
    transition: .2s ease-in-out;
  }
  .bingbuttons .bingdecline:hover {
      border-color: rgba(0,0,0,0.87);
  }
  .bingbuttons .bingaccept{
    background-color: #5BC5C5;
    height: 55px;
    width: 50%;
    max-width: 274px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125em;
    color: #fff;
    font-weight: bold;
    transition: .2s ease-in-out;
    cursor: pointer;
  }
  .bingbuttons .bingaccept:hover {
    background-color: #6AD0D0;
  }
  .bingoverlay {
      display: none;
      position: fixed;
      left: 0;
      top: 0;
      min-width: 100%;
      min-height: 100%;
      background-color: rgba(0,0,0,0.2);
  } 
  @media only screen and (max-width: 1200px) {
  .bingads .content p {
      line-height: 1.5;
  }
  .bingads br{
      display: none;
  }
  
  }
  @media only screen and (max-width: 1023px) {  
    .bingads{
      padding: 20px 15px 20px 15px;
      min-width: 100%;
    } 
  }