
/* Cookie Consent manager */

.cookie-consent a,
.cookie-consent a:link,
.cookie-consent a:visited {
  color: #fff;
}

.cookie-consent a:hover,
.cookie-consent a:active {
  color: #fff;
}
                                       
.cookie-consent-layer {  
  background: rgba(0,0,0,.8);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99995;
  display: none;
}

.bottom-layer {
  height: 380px;  
  top: auto;
}

@media (min-width:768px)
{
  .bottom-layer {
    height: 300px;  
  }
}

.cookie-consent {
  position: relative;
  background: #fff;
  padding: 15px 15px;
  width: auto;
  height: 400px;
  overflow-y: auto;
  box-shadow: 0 -3px 5px rgba(0,0,0,.3);
}

.consent-toggle {
  cursor: pointer;
}

.consent-open {
  height: 500px !important;
}

.consent-open .cookie-consent {
  height: auto !important;
}

.cookie-consent .cp-header {
  font-size: 1.25rem;
}

.cookie-consent .cp-info {
  margin-bottom: 1.5em;
  font-size: .8rem;
}

.cookie-consent .cp-settings {
  display: none;
  min-height: 460px;
  height: 460px;
  overflow-y: auto;
  overflow-x: hidden !important;
}

.cookie-consent .settings-option {
  margin-bottom: 1.5em;
  font-size: .8rem;
}

.cookie-consent .settings-option a,
.cookie-consent .settings-option a:link,
.cookie-consent .settings-option a:visited {
  font-weight: bold;
  color: #666 !important;
}

.cookie-consent .cp-setting-header {
  border-bottom: solid 1px #444;
  padding-bottom: 6px;
  margin-bottom: 6px;
}

.cookie-consent .cp-options .cookie-consent-btn {
  margin-bottom: 1em;
}

.cookie-consent .cp-options .btn-settings {
  background: #999;
  color: #333;
}

.cookie-consent .consent-close,
.cookie-consent .consent-close:link,
.cookie-consent .consent-close:visited,
.cookie-consent .consent-close:hover,
.cookie-consent .consent-close:active {
  color: #333;
  font-size: 12px;
  cursor: pointer;
}

.cookie-consent .consent-close:before {
  content: 'x ';
}

.cookie-consent a.cookie-consent-btn,
.cookie-consent a.cookie-consent-btn:link,
.cookie-consent a.cookie-consent-btn:visited {
  background: #444;
  color: #fff !important;
  cursor: pointer;
}

.cookie-consent .cp-footer {
  margin-top: 1rem;
  font-size: .75em;
}

/* Inline cc */

.cc-info {
  width: 100%;
  padding: 3rem 2rem;
  background: #ddd;
  font-size: .9em;
  text-align: center;
}

.cc-info .cc-btn {
  background-color: #444;
  color: #fff;
  display: inline-block;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 2rem;
  font-size: 1rem;
  text-align: center;
  border: none;
}

@media (max-width:576px) 
{
  .cookie-consent .cp-settings {
    overflow-y: auto;
  }
  .cookie-consent .settings-option {
    font-size: .8em;
  }  
}

@media (min-width:992px) 
{  
  .cookie-consent .cp-options .cookie-consent-btn {
    margin-bottom: auto;
  }
}

