/* Cookie Consent manager */
                                             
.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: #eee;
  padding: 15px 15px;
  width: auto;
  height: 400px;
  overflow-y: auto;
  box-shadow: 0 -3px 5px rgba(0,0,0,.3);
  font-size: 14px !important;
}

.btn {
  font-size: 1.15em !important;
}

.consent-toggle,
.consent-close {
  cursor: pointer;
}

.consent-close {
  color: #444 !important;
}

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

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

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

.cookie-consent .cp-options .btn-settings {
  background: transparent;
  color: #444;
}

.cookie-consent .cp-options .btn-accept,
.cookie-consent .cookie-consent-btn {
  background: #09e;
  color: #fff;
  cursor: pointer;
}

.cookie-consent .cp-header {
  font-size: 1.35em !important;
}

.cookie-consent .cp-info {
  margin-bottom: 1.5em;
}

.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;
}

.cookie-consent .settings-option a,
.cookie-consent .settings-option a:link,
.cookie-consent .settings-option a:visited { 
  color: #444;
  font-size: 1.1em !important;
  font-weight: normal;
}

.cookie-consent .settings-option .btn,
.cookie-consent .settings-option .btn:link,
.cookie-consent .settings-option .btn:visited {
  color: #fff;
  font-size: 1.1em !important;
}

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

.cookie-consent .cp-footer {
  margin-top: 1rem;
}

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

.cookie-consent a:hover,
.cookie-consent a:active {
  color: #ddd;
}

/* Inline cc */

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

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

@media (max-width:576px) {
  .cookie-consent {
    padding: 15px 0;
  }
  
  .cookie-consent .cp-settings {
    overflow-y: auto;
  }
  .cookie-consent .settings-option {}  
}

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

