/* .cookie {
    position: fixed;
    right: 0;
    bottom: 30px;
    z-index: 999;
}

.cookie-close {
    display: none;
}


.cookie__wrapper {
        padding: 10px;
         width: 600px;
           display: flex;
           align-items: center;
        justify-content: space-around;
        background-color: #ffffff;
        border-radius: 5px;
        border: 2px solid #000000;
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  }

@media screen and (max-width: 800px) {
    .cookie__wrapper {
            margin: 0 auto;
            width: 80%;
      }
}

 .cookie__text {
        width: 80%;
 }



 .cookie__button {
       padding: 10px 10px;
         display: flex;
         justify-content: center;
           align-items: center;
        color: #555555;
        border: 1px solid #999999;
        background-color: #ebebeb;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        font-weight: 500;
  } */
		
/* Стили куков новые  */
		
/* Общий контейнер cookie */
.cookie {
	position: fixed;
	bottom: -200px; /* изначально спрятан */
	left: 80px;
	width: 100%;
	max-width: 524px;
	background: #FFF;
	color: #212121;
	border: 1px solid #f8f8f8;
	font-size: 14px;
	border-radius: 24px;
	padding: 24px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: bottom 0.6s ease-in-out, opacity 0.4s ease;
	opacity: 0;
	z-index: 1000;
}

.cookie__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* показываем баннер */
.cookie-show {
	bottom: 24px;
	opacity: 1;
}

/* текст */
.cookie__text {
	flex: 1;
	line-height: 1.5;
	font-size: 15px;
}

.agreement {
    transition: color 0.3s;
} 

.agreement:hover {
	color: #99a3af;
}

/* #99a3af.agreement:active {
    color: #F9f9f9;
} */

/* кнопка */
.cookie__button {
	background: red;
	display: block;
	width: 64px;
	height: 50px;
	border: none;
	color: #FFF;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	margin: 10px 0 0 10px;
	transition: all 0.3s ease;
	border-radius: 8px;
}

.cookie__button:hover {
	background: #cf2e2e;
}

.cookie__button:active {
	background: #f33535;
}


@media screen and (max-width: 1280px) {
	.cookie {
		left: 72px;
	}
}

@media screen and (max-width: 768px) {
    .cookie {
		font-size: 12px;
		padding: 24px 16px;
        left: 16px;
        width: calc(100% - 32px);
        max-width: 100%;
    }
}