.cookies {
    position: fixed;
    z-index: 1999;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 21px 40px 20px 26px;
    bottom: 140px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    box-shadow: 0px 5px 20px 0px #0000001f;
    background-color: #fff;
	max-width: 768px;
	gap: 20px;
}

.popup-text-info__title {
	font-size: 1.142em;
    padding: 0;
    padding-bottom: 11px;
	font-weight: bold;
}

.popup-text-info__btn .btn {
	margin: 5px;
}

#cookieClose {
    position: absolute;
    right: 0;
    top: 10px;
}

@media (min-width: 1024px) {
    .cookies {
        align-items:flex-start;
        flex-direction: row;
    	width: fit-content;
    }
}

@media (min-width: 1240px) {
    .cookies {
    	bottom: 24px;
    }
}