/* 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;

  text-align: center;
  z-index: 1000;
  /* Text Space */
  /* Buttons space */
}
.cdbar .cdbar-text {
  display: inline-block;
  margin-right: 5px;
}
.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 {
  bottom: 0;
  top: auto;
}
/* Bar at BOTTOM */
.cdbar.bottom {
  top: auto;
  bottom: 0;
}
/* Bar at MIDDLE */
.cdbar.middle {
  top: 50%;
  bottom: auto;
  
  -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:rgba(0,0,0,0.6);
}
.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;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  font-size: 1em;
  margin-right: 5px;
}
/* "Accept" Btn */
.cdbtn.cookie {
  color: #ffffff;
     background: linear-gradient(137deg, rgba(63,179,144,1) 0%, rgba(48,165,179,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3fb390",endColorstr="#30a5b3",GradientType=1);
    color: #fff;
   
    display: inline-block;
    font-weight: bold;
    margin: 20px 0;
}
.cdbtn.cookie:hover {
  background-color: #3ba0c6;
}
#cookieAcceptBtn:hover{color:#007555!important; background:#fff}
#policyPageBtnhover{color:#007555!important; background:#fff}
/* "Privacy" Btn */
.cdbtn.privacy {
  color: #ffffff;
     background: linear-gradient(137deg, rgba(63,179,144,1) 0%, rgba(48,165,179,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3fb390",endColorstr="#30a5b3",GradientType=1);
    color: #fff;
   
    display: inline-block;
    font-weight: bold;
    margin: 20px 0;
}
.cdbtn:hover{color:#007555!important; background:#fff}
.cdbtn.privacy:hover {
  background-color: #fff;
}
@media(max-width:767px)
{
	.pageContent {
     margin: 0px;
}
}
@media(max-width:768px)
{
	.cdbar .cdbar-text 
	{
  margin-right: 0px;
  padding:20px 20px 0px 20px;
	}
}