.the-cookiejar {
   max-width: 100%;
   right: 0;
   left: 0;
   margin-right: auto;
   margin-left: auto;
   height: auto;
   z-index: 1000;
   position: fixed;
   -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
           box-sizing: border-box;
   display: -webkit-box;
   display: -webkit-flex;
   display: -moz-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -webkit-align-items: center;
      -moz-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   padding: 10px 50px 10px 50px;
}
.cookie-text {
   -webkit-box-flex: 2;
   -webkit-flex: 2;
      -moz-box-flex: 2;
       -ms-flex: 2;
           flex: 2;
   margin-right: 50px;
   color: #000;
}
.cookie-buttons{
   -webkit-box-flex: 1;
   -webkit-flex: 1;
      -moz-box-flex: 1;
       -ms-flex: 1;
           flex: 1;
   display: -webkit-box;
   display: -webkit-flex;
   display: -moz-box;
   display: -ms-flexbox;
   display: flex;
}
.cookie-btn {
   height: 100%;
   max-width: 60%;
   margin-top: 3px;
   margin: 0 auto;
   -webkit-box-flex: 2;
   -webkit-flex: 2;
      -moz-box-flex: 2;
       -ms-flex: 2;
           flex: 2;
   -webkit-justify-content: space-around;
       -ms-flex-pack: distribute;
           justify-content: space-around;
   display: inline-block;
   padding: 6px 12px;
   margin-bottom: 0;
   font-size: 14px;
   font-weight: 400;
   line-height: 1.42857143;
   text-align: center;
   white-space: nowrap;
   vertical-align: middle;
   -ms-touch-action: manipulation;
   touch-action: manipulation;
   cursor: pointer;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
   background-image: none;
   border: 1px solid transparent;
   border-radius: 4px;
   color: rgb(0, 0, 0);
}
.cookie-btn:hover {
   cursor: pointer;
}
.cookie-btn a {
   text-decoration: none;
   color: rgb(0, 0, 0);
}
.cookie-btn a:hover {
   text-decoration: none;
   color: black;
}
.hide-cookie {
   display: none;
}
@media screen and (max-width: 767px) {
   .the-cookiejar {
      -webkit-box-flex: 0;
      -webkit-flex: none;
         -moz-box-flex: 0;
          -ms-flex: none;
              flex: none;
      display: block;
      padding: 5px 20px 10px 20px;
   }
   .cookie-text {
      margin: 0;
      margin-bottom: 10px;
   }
   .cookie-buttons {
      display: block;
      text-align: center;
   }
   .cookie-btn {
      min-width: 100px;
   }
}
