/* Generated by less 2.4.0 */
/*  
*   jquery.cookieDisclaimer.js 
*   -----------------------------------------------------------
*   A simple cookie disclaimer bar for your site
*   
*   Plugin Style
*/
/* CookieDisclaimerBar */
.cdbar {
  right: 0;
  left: 0;
  padding: 15px 10px;
  text-align: center;
  z-index: 1000;
  font-size:80%;
  line-height: 1.4;
  /* Text Space */
  /* Buttons space */
}
.cdbar .cdbar-text {
  display: inline-block;
  margin-right: 5px;
}
    .cdbar .cdbar-text a {
        color: black;
        -webkit-transition: color 0.3s;
        -moz-transition: color 0.3s;
        -o-transition: color 0.3s;
        transition: color 0.3s;
    }
.cdbar .cdbar-text a:hover {
    opacity: 0.5;
}
.cdbar .cdbar-buttons {
  display: inline-block;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.cdbar.fixed {
  position: fixed;
}
.cdbar.relative {
  position: relative;
}
.cdbar.absolute {
  position: absolute;
}
/* Bar Clearfix */
.cdbar:before,
.cdbar:after {
  content: "";
  display: table;
  clear: both;
}
/* POSITIONS */
/* *************************************** */
/* Bar at TOP */
.cdbar.top {
  top: 0;
  bottom: auto;
}
/* Bar at BOTTOM */
.cdbar.bottom {
  top: auto;
  bottom: 0;
}
/* Bar at MIDDLE */
.cdbar.middle {
  top: 50%;
  bottom: auto;
  padding: 30px 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cdbar.middle .cdbar-text {
  display: block;
  margin-bottom: 15px;
}
.cdbar.middle .cdbar-buttons {
  display: block;
}
/* STYLES */
/* *************************************** */
    .cdbar.dark {
        color: #ffffff;
        background-color: var(--second-color);
    }
.cdbar.light {
  color: #333333;
  background-color: #efefef;
}
/* MODALS */
/* *************************************** */
.cdmodal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
}
.cdmodal .cdmodal-box {
  position: absolute;
  width: 50%;
  max-width: 700px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.cdmodal .cdmodal-box-inner {
  background: #fff;
  padding: 40px 20px;
}
.cdmodal .cdmodal-box-inner .cdmodal-text h3 {
  padding: 0;
  margin: 0 0 0.5em 0;
}
.cdmodal.top .cdmodal-box {
  top: 10%;
  bottom: auto;
}
.cdmodal.bottom .cdmodal-box {
  top: auto;
  bottom: 10%;
}
.cdmodal.middle .cdmodal-box {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* BUTTONS */
/* Generic Btn */
.cdbtn {
    display: inline-block;
    border: none;
    padding: 5px 10px;
    text-decoration: none;
    cursor: pointer;
    font-size: 1em;
    margin: 0px 5px;
    -webkit-transition: background-color 0.3s, color 0.3s;
    -moz-transition: background-color 0.3s, color 0.3s;
    -o-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
}
/* "Accept" Btn */
.cdbtn.cookie {
  color: #000047;
  background-color: #ffffff;
}
.cdbtn.cookie:hover {
  color: #ffffff!important;
  background-color: #000000;
}
/* "Privacy" Btn */
.cdbtn.privacy {
  color: #000047;
  background-color: #ffffff;
}
.cdbtn.privacy:hover {
  color: #ffffff!important;
  text-decoration:none;
  background-color: #000000;
}
