.cookieStyle{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
  }
    
   /*body{
    min-height:100vh;
    background-color: #4070f4;
   }*/

   /* where to style the Content Box look and feel */
   /*postion and right and bottom decide where in website the consent box
   will display */
   .wrapper{
    position: fixed;
    bottom: 100px;
    right: -375px;
    max-width: 270px;
    /*max-width: 325px;
    width: 50%;
    max-height: 325px;
    height: 50%;*/
    /*background: #fff;*/
    background: #ffe925;
    border-radius: 50px;
    /*padding: top, right, bottom, left.---controls inside box spacing*/
    padding: 10px 20px 10px;
    transition: right .6s ease;
   }

  .wrapper.show{
    right: 50px;
  }
   .wrapper header{
    display: flex;
    align-items: center;
    column-gap: 10px;
   }

   header i{
    /*color: #4070fa;*/
    color: #ff4e27;
    /*font-size: 32px;*/
    font-size: 20px;
   }

   header h2{
    /*color: #4070fa;*/
    color: #ff4e27;
    font-weight: 600;
   }
   .wrapper .data {
    margin-top: 16px;
   }
   .wrapper .data p{
    color: #333;
    /*font-size: 16px;*/
    font-size: 15px;
   }
   .wrapper .data p a:hover{
    text-decoration: underline;
   }
   .wrapper .buttons{
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
   }
   
   .buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background:#4e7447;
    /*cursor: pointer;*/
    width: calc(100% / 2 - 10px);
    /*transition: all 0.2s ease;*/
   }
   .buttons .button:hover{
    background-color:#189124;
   }
   .cookie_heading{
    /*color: #ff4e27;*/
    color: #0e0e0e;
   }