
  .cookieConsentContainer {
    z-index: 999;
    width: 200px;
    min-height: 20px;
    box-sizing: border-box;
    padding: 30px 30px 30px 20px;
    background: #2323239b;
    overflow: hidden;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;

  }

  .cookieConsentContainer .cookieTitle a {
    font-family: OpenSans, arial, sans-serif;
    color: #fff;
    font-size: 22px;
    line-height: 20px;
    display: block;
    text-align: center;

  }

  .cookieConsentContainer .cookieDesc p {
    margin: 0;
    padding: 0;
    font-family: OpenSans, arial, sans-serif;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    display: block;
    margin-top: 10px;

  }

  .cookieConsentContainer .cookieDesc a {
    font-family: OpenSans, arial, sans-serif;
    color: #000000;
    text-decoration: underline;
    font-weight: bold;

  }

  .cookieConsentContainer .cookieButton a {
    display: inline-block;
    font-family: OpenSans, arial, sans-serif;
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    margin-top: 14px;
    background: #ffffff;
    box-sizing: border-box;
    padding: 15px 24px;
    text-align: center;
    transition: background .5s;
    
  }

  .cookieConsentContainer .cookieButton a:hover {
    cursor: pointer;
    background: #d775f5;
    box-shadow: 0px 0px 3px 2px;

  }

  @media (max-width: 980px) {
    .cookieConsentContainer {
      bottom: 0!important;
      left: 0!important;
      width: 100%!important;
    }
  }
