.cookiebar {
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
    width: 100%;
	z-index:10000000;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), -3px -4px 5px 0 rgba(0, 0, 0, .12), 0 3px 1px -2px rgba(0, 0, 0, .2);
  }
  
  .cookiebar .card {
    position: relative;
    margin: 0;
    width: 100%;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 1);
  }
  
  .cookiebar .card-inner {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    max-width: 48em;
  }
  
  .cookiebar .card-content {
    padding: 24px;
    border-radius: 0 0 2px 2px;
  }
  
  .cookiebar .card-title {
    margin-bottom: 8px;
    display: block;
    line-height: 32px;
    font-size: 24px;
    font-weight: 300;
    color: rgba(8, 125, 196, 1);
  }
  
  .cookiebar .card-action {
    position: relative;
    padding: 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: inherit;
    border-top: 1px solid rgba(160, 160, 160, .2);
  }
  
  .cookiebar .card-action #basic_chkbx,
  .cookiebar .card-action label[for="basic_chkbx"] {
    opacity: .5;
  }
  
  @media (max-width: 48em) {
    
    .cookiebar .card-action {
      flex-direction: column !important;
      width: 100%
    }
    
    .cookiebar .card-action .flex {
      margin-top: 10px;
    }
    
    .cookiebar .card-action > button {
      max-width: 200px;
      margin-top: 10px;
    }
  }
  
  .m-right--1 {
    margin-right: 1em;
  }
  
  .width--100 {
    width: 100%;
  }
  
  .flex {
    display: flex;
  }
  
  .align__items--center {
    align-items: center !important;
  }
  
  .justify--center {
    justify-content: center !important;
  }
  
  .button--orange {
    background: rgba(8, 125, 196, 1);
    color: rgba(255, 255, 255, 1);
  }
  
  .mw--48 {
    max-width: 48em;
  }
  
  .flex--row {
    flex-direction: row;
  }
  
  .flex--column {
    flex-direction: column;
  }
  
  .center {
    margin: 0 auto;
  }
  
  .button {
    position:relative;
    padding: 7.5px 15px;
    overflow: hidden;
    margin-bottom: 0;
    border: none;
    border-radius: 2px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
    background: rgb(247 36 89);
   
    font-weight: 500;
    font-size: 14.4px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s ;
  }
  
  .button--orange {
    background: rgba(239, 113, 2, 1);
  }
  

  
  .block {
    display: block;
  }