.cookie {box-sizing: border-box; width: 100%; min-height: 10px; max-height: 250px; padding: 12px; position: fixed; bottom: 0; left: 0; z-index: 999; background: #eebac4; display: flex; align-items: center;}
.cookie > div {padding-left: 5%; padding-right: 5%; box-sizing: border-box;}
.cookie a {color: inherit; text-decoration: underline;}
.cookie__btns {display: flex; gap: 8px; flex-shrink: 0;}
.cookie__btn {background: #fff; border: 1px solid transparent; padding: 7px 15px; cursor: pointer; text-align: center; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; box-sizing: border-box;}
.cookie__btn:hover {background: #d57587; color: #fff; border-color: #d57587; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out;}
.cookie__disagree {background: transparent; border: 1px solid #fff; color: #fff;}
.cookie__disagree:hover {background: #d57587; border-color: #d57587; color: #fff;}
.cookie__agree {background: #fff; border: 1px solid #fff; color: inherit;}
.cookie__agree:hover {background: #d57587; border-color: #d57587; color: #fff;}
@media screen and (max-width:767px) {
	.cookie > div {padding-left: 1%; padding-right: 1%;}
}
@media screen and (max-width:480px) {
	.cookie {flex-wrap: wrap;}
	.cookie__text {width: 100%; margin-bottom: 10px;}
	.cookie__btns {width: 100%;}
	.cookie__btn {flex: 1 1 0;}
}
