.cookie-banner__container {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 999;
    background-color: #fff;
    padding: 2vh 1vw;
    border-radius: 8px;
    border: 1px solid #FF7A00;
    gap: .3rem;
    max-width: 555px;
}

.cookie-banner__container p{
    margin-bottom: 0;
    line-height: 1.3;
    font-size: clamp(12px, 1vw, 16px);
}

.cookie-banner__privacy-policy{
    color: #FF7A00;
    margin-bottom: 0;
}

.cookie-banner__actions{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: .5rem;
}

.cookie-banner__actions button{
    width: 100%;
    padding: 12px 20px;
    background-color: #FF7A00;
    color: #ffffff;
    border: 1px solid #FF7A00;
    border-radius: 50px;
    font-weight: bold;
	margin-bottom: 0;
	transition: all .3s ease-in-out;
	line-height: 1;
}

.cookie-banner__actions button:hover{
	background-color: transparent;
	color: #FF7A00;
}

.cookie-banner__actions button:hover{
    cursor: pointer;
}

@media screen and (max-width: 1287px){
    .cookie-banner__container{
        width: 100%;
        left: 0;
    }
}

@media screen and (max-width: 643px){
    .cookie-banner__actions button:first-child{
        order: 2;
    }
}