.siteCookies {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #e2eee5;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    max-width: 970px;
    z-index: 9;
    width: 90%;
}

.siteCookies__form {
    display: flex;
}

.siteCookies__content {
    align-items: center;
    display: flex;
}

.siteCookies__content::before {
    content: "";
    height: 40px;
    width: 40px;
    display: flex;
    flex-shrink: 0;
    margin-right: 15px;
    background-color: white;
    background-image: url("https://www.benlemi.cz/user/documents/theme/dist/icons/cookie.svg");
    background-repeat: no-repeat;
    background-size: 32px;
    border-radius: 50%;
    background-position: center;
}

.siteCookies__text {
    padding-right: 30px;
    margin: 0;
    color: #3c3c3b;
    font-size: 14px;
}

.siteCookies__text a {
    color: #3c3c3b;
    text-decoration: underline;
}

.siteCookies__links {
    margin: 0;
    display: flex;
}

.siteCookies__link, .siteCookies__button {
    color: #0B0B0B;
    background: white;
    border: 0px solid #F0F0F0;
    padding: 0 20px;
    height: 44px;
    display: flex;
    align-items: center;
    margin-right: 10px;
    font-size: 14px;
    line-height: 1;
}

.siteCookies__link:hover {
    background: #F0F0F0;
}

.siteCookies__button {
    background: #408b46;
    color: white;
    border: 0;
}

.siteCookies__button:hover {
    background: #408b46;

}

.siteCookies__buttonWrap {
    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (max-width: 991px) {
    .siteCookies {
        min-width: 80%;
    }

    .siteCookies__form {
        flex-direction: column;
    }

    .siteCookies__content {
        display: flex;
        flex-direction: column;
        margin-top: -50px;
    }

    .siteCookies__text {
        padding: 0;
        padding-bottom: 15px;
        text-align: center;
    }

    .siteCookies__buttonWrap {
        padding-top: 10px;
    }

    .siteCookies__link, .siteCookies__button {
        margin: 0;
        width: 100%;
        text-align: center;
        max-width: 300px;
        align-items: center;
        justify-content: center;
    }

    .siteCookies__links {
        width: 100%;
        justify-content: center;
    }

    .siteCookies__content::before {
        height: 62px;
        width: 62px;
        margin: 0;
        margin-bottom: 15px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    }
}

@media screen and (max-width: 575px) {
    .siteCookies {
        min-width: 100%;
        bottom: 0;
    }

}

.cookiesSetting {
    display: none;
}



body.cookies-visible {
    overflow: hidden;
}

.cookiesSetting__form {}

.cookiesSetting__title {
    margin: 0;
    padding: 20px;
    padding-top: 40px;
    font-weight: 500;
    font-size: 30px;
}

.cookiesSetting__perex {
    padding: 20px;
    padding-top: 0;
    margin: 0;
    color: #6E6E6E;
}

.cookiesSetting__data {
    background: white;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1px;
}

.cookiesSetting__item {
    outline: 1px solid #F0F0F0;
    background: white;
    padding: 20px;
    display: flex;
    align-items: center;
}

.cookiesSetting__item__col1 {
    text-align: left;
    padding-right: 20px;
}

.cookiesSetting__item__name {
    color: #0B0B0B;
    font-size: 15px;
}

.cookiesSetting__item__text {
    color: #6E6E6E;
    font-size: 14px;
}

.cookiesSetting__item__col2 {}

.cookiesSetting__item__status {
    display: flex;
    align-items: center;
    border: 1px solid #F0F0F0;
    padding: 10px 15px;
    cursor: pointer;
}

.cookiesSetting__item__status * {
    cursor: pointer;
}

.cookiesSetting__item__state {
    padding-left: 10px;
}

.cookiesSetting__bottom {
    display: flex;
    padding: 20px;
    font-size: 14px;
}

.cookiesSetting__bottom button {
    color: #0B0B0B;
    background: white;
    border: 1px solid #F0F0F0;
    padding: 0 20px;
    height: 44px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.cookiesSetting__bottom .cookiesSetting__uncheck {
    flex-grow: 1;
}

.cookiesSetting__bottom button.cookiesSetting__button {
    border-color: #eee;
}

.cookiesSetting__bottom button.cookiesSetting__button--green {
    background: green;
    color: white;
    border: 0;
    margin: 0;
}

.siteCookies__text .js-cookiesConsentSubmit {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    text-decoration: underline;
}

.siteCookies__button.js-cookiesConsentSubmit {
    font-size: 0;
    min-width: 100px;
}

.siteCookies__button.js-cookiesConsentSubmit::before {
    content: "OK";
    font-size: 14px;
    text-align: center;
    width: 100%;
}

.js-cookies-settings {
    font-size: 0;
}

.js-cookies-settings::before {
    content: "Do nastavení";
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
}

:lang(en).js-cookies-settings::before {
    content: "Settings";
}

:lang(ro) .js-cookies-settings::before {
    content: "Setări";
}

:lang(hu) .js-cookies-settings::before {
    content: "A beállításokhoz";
}

@media screen and (max-width: 575px) {
    .cookiesSetting__item {
        flex-direction: column;
    }

    .cookiesSetting__bottom {
        flex-direction: column;
    }

    .cookiesSetting__bottom button {
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}



.siteCookies__button.js-cookiesConsentSubmit{
  cursor: pointer;
}
.siteCookies{
  max-width: 100%;
  bottom: 0;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
background: rgba(0,0,0,0.1);
  align-items:center;
  justify-content: center;
  display: flex;
}
.siteCookies__form{
    max-width: 480px;
 background: #e2eee5;
  padding: 20px;
  box-shadow: 0 10px 15px rgba(46,82,61,.1);
}
.siteCookies__text{
  padding: 0;
  font-size: 14px;
}
.siteCookies__content, .siteCookies__form{
  flex-direction: column;
}
.siteCookies__content::before{
  display: none;
}
.js-cookies-settings{
  display: flex;
  margin: 10px 0;
}
.siteCookies__link{
  background:transparent;
  text-decoration: underline;
}
.js-cookies-settings::before{
  content: "Nastavení souborů cookies";
}
.siteCookies__button.js-cookiesConsentSubmit{
  margin: 0;
  margin-top: 10px;
}
@media screen and (max-width: 991px){
.siteCookies__content {
    margin-top: 0px;
}
}
.siteCookies__button.js-cookiesConsentSubmit::before{
  content: none;
}
.siteCookies__button.js-cookiesConsentSubmit{
  font-size: 16px;
  text-transform: uppercase;
background: #cf4823;
  margin-bottom: 10px;
  letter-spacing: 2px;
}