.cookie-popup {
    position: fixed;
    z-index: 99999;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1920px;
    width: 50%;
    overflow: auto;
    padding: 20px 60px;
    max-height: 100vh;
}
.cookie-content {
	display: flex;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.5);
    background: #FF6901
	
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 281px;
    margin-left: 15px;
}
.accept {
    background: #fff;
    color: #000;
    margin-bottom: 10px;
}
.cookie-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.03em;
    border: 1px solid #fff;
    border-radius: 5px;
    min-height: 40px;
    cursor: pointer;
}
.settings {
    background: none;
    color: #fff;
    text-decoration: none;
    text-align: center;
}
.cookie-text {
	color: #fff;
	font-size: 14px;
}
.cookie-text a{
	color: #fff;
	font-size: 14px;
	text-decoration: underline;
}
.accept:hover {
background:rgba(227, 227, 227, 0.92);
color: #FF6901;
border: #FF6901;
}
@media (max-width: 1600px) {
	.cookie-popup {
		width: 60%;
	}
}
@media (max-width: 1400px) {
	.cookie-popup {
		width: 65%;
	}
}
@media (max-width: 1300px) {
	.cookie-popup {
		width: 70%;
	}
}
@media (max-width: 1200px) {
	.cookie-popup {
		width: 75%;
	}
}
@media (max-width: 1100px) {
    .cookie-popup {
        padding: 10px;
		width: 90%;
    }
    .cookie-content {
        flex-direction: column;
    }
    .cookie-buttons {
        width: 100%;
        max-width: none;
        margin-left: 0;
    }
}