.cookie__overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}
.cookie__bannerBlock {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px 5px rgba(212, 216, 222, 0.5);
}
.cookie__bannerWrapper {
    justify-content: center;
    display: flex;
    width: 100%;
    padding: 20px 0;
}
.cookie__body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cookieBody__content {
    flex-direction: column;
    justify-content: space-around;
    display: flex;
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
    max-width: 642px;
    max-height: 400px;
    padding: clamp(10px, 3vw, 20px);
    background-color: #fff;
    border-radius: 2px;
}
.cookieBodyContent__h1 {
    font-size: clamp(18px, 5.5vw, 30px);
    font-weight: bold;
}
.cookieBodyContent__h2 {
    font-size: clamp(16px, 5vw, 24px);
    font-weight: bold;
}
.cookieBodyContent__p {
    padding: 15px 0;
    font-size: clamp(12px, 3vw, 16px);
    font-weight: 500;
    text-align: justify;
}
.cookieBodyContent__btnWrap {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    display: flex;
    width: 100%;
}
.cookieBodyContent__btn {
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
    height: 30px;
    max-width: 240px;
    padding: 0 clamp(5px, 1.5vw, 30px);
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(12px, 3vw, 16px);
    font-weight: 500;
    background-color: #000;
    border: none;
    transition: 500ms all;
    cursor: pointer;
}
.cookieBodyContent__btn-inline {
    display: inline-flex;
    width: 100%;
    max-width: initial;
}

.cookieBodyContent__btn:focus {
    outline: none;
}

.cookieBodyContent__btn:hover {
    background-color: #313131;
}

.cookieBodyContent__btn:last-of-type {
    margin-right: 0;
}
.cookieBodyContent__btn-green {
    background-color: #188600;
}

.cookieBodyContent__btn-green:hover {
    background-color: #146901;
}
.cookieBodyContent__link {
    margin-left: clamp(5px, 1.5vw, 30px);
    color: #000;
    font-size: clamp(12px, 3vw, 16px);
    text-align: right;
    text-decoration: underline;
}
.cookieBodyContent__link:hover {
    text-decoration: none;
}
.cookieBodyContent__buttons {
    flex-direction: column;
    display: flex;
}

@media(min-width: 575px) {
    .cookieBodyContent__buttons {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }

    .cookieBodyContent__btnWrap {
        align-items: center;
        flex-direction: row;
        justify-content: center;
        width: auto;
    }
    .cookieBodyContent__btn {
        height: 40px;
        margin-right: clamp(5px, 1.5vw, 20px);
        margin-bottom: 0;
    }
    .cookieBodyContent__btn-inline {
        width: auto;
    }
}
