/**************************************************
COOKIE BAR - mobile screens
***************************************************/
.cookie-bar {
  position: fixed;
  display: none;
  text-align: center;
  padding: 10px 0;
  font-family: 'Open Sans', Arial;
  color: #FFF;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(50,50,50,0.95);
  width: 100%;
  z-index: 19999;
}
.cookie-bar a {
    color: inherit;
}
.cookie-bar a:hover {
      color: inherit;
    }

.cookie-bar__title {
  font-family: 'Open Sans', Arial;
  font-size: 24px;
  font-weight: bold;
  line-height: 26px;
}
.cookie-bar__title  br {
    display: none;
  }

.cookie-bar__text {
  font-size: 13px;
  line-height: 16px;
  padding: 8px 0 13px;
}
.cookie-bar__text  br {
    display: none;
  }

.cookie-bar__enable-btn {
  display: inline-block;
  margin: 0 10px 0 auto;
  font-size: 14px;
  line-height: 35px;
  height: 35px;
  width: 140px;
  text-transform: Uppercase;
  background-color: #FF0000;
  cursor: pointer;
  margin-bottom: 13px;
  text-decoration: none;
}
.cookie-bar__more-info {
  font-size: 12px;
  margin-bottom: 5px;
  line-height: 15px;
  display: inline-block;
  text-decoration: underline;
}
.cookie-bar__more-info:hover {
    text-decoration: none;
  }

.cookie-bar__close-btn {
  display: inline-block;
  width: 14px;
  height: 14px;
  overflow: hidden;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.cookie-bar__close-btn::before, .cookie-bar__close-btn::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background: #FFF;
  }
.cookie-bar__close-btn::before {
    transform: rotate(45deg);
  }
.cookie-bar__close-btn::after {
    transform: rotate(-45deg);
  }

.cookie-bar__close-btn--thick::before, .cookie-bar__close-btn--thick::after {
      height: 3px;
      margin-top: -2px;
    }