/* cookie */
.cookie-agreement {
    background: #fff;
    color: #333;
    line-height: 1.3em;
    font-size: 16px;
    z-index: 999999;
    font-family: Arial, sans-serif;
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 0px 15px 0 rgb(54 61 77 / 25%);
}

.container-cookie {
   max-width: 1536px;
   width: 100%;
}

.cookie-agreement__wr {
    padding: 16px;
    position: relative;
    margin: 0 auto;
	align-items: center;
}
.cookie-agreement__content {

}
.cookie-agreement__buttons {
    padding-top: 12px;
}

.cookie-agreement__header {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.3em;
}
.cookie-agreement__text {
    font-size: 14px;
}

.cookie-agreement__btn-ok {
    background: transparent;
    cursor: pointer;
    padding: 11px 32px;
    font-weight: 700;
    line-height: 1.5;
    border-radius: 0;
    border: 2px solid #fba907;
    background: #fba907;
    color: #fff;
    text-align: center;
    transition: background-color 0.2s ease-out;
    max-width: 400px;
}

.cookie-agreement__btn-ok:hover {
    opacity: 0.85;
}
.cookie-agreement a {
    color: inherit;
    text-decoration: underline;
}

@media(min-width: 640px) {
    .cookie-agreement__wr {
        display: grid;
        grid-template-columns: 1fr 150px;
        gap: 20px;
        max-width: calc(100vw - 100px);
        margin: 0 auto 0 0;

    }
    .cookie-agreement__buttons {
        padding-top: 0;
    }
}
@media(min-width: 992px) {
    .cookie-agreement__wr {
        max-width: 780px;
    }
}
@media(min-width: 1800px) {
    .cookie-agreement__wr {
        max-width: 100%;
    }
}
