.cookie-notification-modal {
  max-width: 340px;
  position:fixed;
  left: 0;
  bottom: 0;
  z-index: 99999;
  padding: 20px 30px;
  background-color:#ffffff;
  box-shadow: 0 10px 20px 0 rgba(0,0,0,0.1);
}

.cookie-agree__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cookie-agree__button {
  font-size: 0.8rem;
  font-weight: 300;
  margin: 0;
  font-family: inherit;
  padding-left: 1.5rem;
  padding-right: 1.5rem; 
  min-width: 10rem;
  min-height: auto;
  padding: 0.7rem;
  line-height: 100%;
}

a.cookie-agree__button__more {
  font-size: 0.8rem;
  font-weight: 300;
  font-family: inherit;
  padding-left: 1.5rem;
  padding-right: 1.5rem; 
  padding: 0.7rem;
  line-height: 110%;
}


.cookie-agree__button:not(:last-child) {
  margin-bottom: 0.5rem;
}

.cookie-agree {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width:100%
}

.cookie-agree__text {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 150%;
  text-align: center;
  margin-bottom: 1rem;
}

.cookie-agree__question {
  cursor: pointer;
  position: static;
  display: inline;
  opacity: 1;
  text-align: center;
}

@media (max-width: 992px) {
  .cookie-agree__question {
    display: none;
  }
}

.cookie-agree__question svg {
  display: inline;
  fill: #b4b4b4;
}

.cookie-modal__close {
  background-color: transparent;
  border: none;
  position: absolute;
  width: 0.9375rem;
  height: 0.9375rem;
  top: 0.9375rem;
  right: 1.2375rem;
  top: 3px;
  right: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  cursor: pointer;
  z-index: 5;
  width: 1.25rem;
  height: 1.25rem;
}

.cookie-modal__close:hover,
.cookie-modal__close:focus {
  opacity: 0.7;
}

.cookie-modal__close::before,
.cookie-modal__close::after {
  position: absolute;
  content: "";
  width: 1.2rem;
  height: 0.0625rem;
  background: #b4b4b4;
  border-radius: 3.125rem;
  display: block;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.cookie-modal__close::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.cookie-modal__close::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}


#cookie-modal.cookie-notification-modal {
    max-width: 100%;
    padding: 0;
    box-shadow: unset;
    position: fixed;
    bottom: 0;
    z-index: 10000;
    left: 0;
    right: 0;
    background: #f7f7f7;
}
#cookie-modal.cookie-notification-modal  .container {
    width: 70%;
    margin: auto;
    padding: 20px;

}

#cookie-modal .cookie-agree__text{
        font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    display: flex;
    align-items: center;
    color: #000;
    text-align: left;
    margin-bottom: 0;
}
#cookie-modal .cookie-agree__text a{
    color: #000;
}
#cookie-modal .cookie-agree__buttons,
#cookie-modal .cookie-agree__question.tooltip{
    display: none;
}

#cookie-modal .cookie-modal-close {
    display: block;
    background: #ff6600;
    padding: 5px 10px;
    height: 29px;
    margin-left: 20px;
    color: #ffffff;
}

#cookie-modal .cookie-modal-close:hover {
    background: #2f2f2f;
    opacity: 1;
}
#cookie-modal .cookie-modal-close span {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    display: block;
    padding-top: 1px;
    padding-left: 2px;
}

@media (max-width: 767px) {
   #cookie-modal.cookie-notification-modal  .container{
        width: 100%;
       
    }
    #cookie-modal .cookie-agree__text{
         font-size: 13px;
        letter-spacing: 1px;
    }
}