.cookie-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    background-color: #fff;
    transition: all .5s;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    border-top: 1px solid #D7D7D8;
    display: flex;
    justify-content: center;
    color: #636363;
	z-index: 101;
}

.cookie-panel__close {
	border: 1px solid #e50071;
    background: #fff;
    color: #e50071;
    border-radius: 4px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    align-items: center;
    padding: 4px 15px;
    cursor: pointer;
    margin-left: 20px;
}

.cookie-panel__close:hover {
    color: #fff;
    background: #e50071;
	text-decoration:none;
}

/***/
.cookie-panel_closed {
    bottom: -1000px;
}

.cookie-panel div:nth-child(1) {
    margin: auto 0;
}

.cookie-panel div:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cookie_panel a {
    color: #007bff;
}

@media screen and (max-width: 1550px) {
    .cookie-panel {
        font-size: 11px;
        line-height: 11px;
    }
}

@media screen and (max-width: 1150px) {
    .cookie-panel {
        font-size: 10px;
        line-height: 11px;
    }
}

@media screen and (max-width: 510px) {
    .cookie-panel {
        padding: 5px 10px;
        font-size: 9px;
    }

    .cookie-panel div {
        line-height: 14px;
    }
}

@media screen and (max-width: 350px) {
    .cookie-panel div {
        line-height: 11px;
    }
}