.cookie-wrapper{
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100vw;
    justify-content: center;
    align-items: center;
    background-color: #242424;
    height: 5.729vw;
    z-index: 6;
    animation: 0.5s ease cookie-show-up;
}

.cookie-img{
    width: 3.333vw;
    margin-right: 2.396vw;
}

.cookie-text{
    width: 38.958vw;
    font-style: normal;
    font-weight: normal;
    font-size: 0.833vw;
    line-height: 165%;
    color: #B0AFCC;
    margin-right: 6.302vw;
}

.cookie-link{
    color: #EF0A5F;
}

.cookie-decline{
    padding: 0.625vw 2.240vw;
    background-color: #242424;
    width: 7.969vw;
    border: 0.104vw solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 2.708vw;
    font-weight: 600;
    font-size: 0.833vw;
    line-height: 1.250vw;
    margin-right: 0.885vw;
    transition: all 0.3s ease;
}

.cookie-accept{
    padding: 0.625vw 2.240vw;
    background-color: #EF0A5F;
    width: 7.969vw;
    border: 0.104vw solid #EF0A5F;
    box-sizing: border-box;
    border-radius: 2.708vw;
    font-weight: 600;
    font-size: 0.833vw;
    line-height: 1.250vw;
    transition: all 0.3s ease;
}

.cookie-decline:hover{
    background-color: #3a3a3a;
}

.cookie-accept:hover{
    background-color: #CC084F;
    border: 0.104vw solid #CC084F;
}

@media screen and (max-width: 1023px) {
    .cookie-mobile-wrapper{
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        height: 100vh;
        background-color: #24242448;
        z-index: 7;
    }

    .cookie-wrapper{
        flex-direction: column;
        height: auto;
        padding: 5vw 0;
        border-radius: 10vw;
        width: 90vw;
        height: 100vw;
        position: initial;
    }

    .cookie-img{
        width: 10vw;
        margin-bottom: 3vw;
    }
    
    .cookie-text{
        width: 60vw;
        font-size: 3.833vw;
        margin-bottom: 5vw;
        text-align: center;
    }
    
    .cookie-decline{
        padding: 2.625vw 4.240vw;
        width: 50vw;
        border: 0.5vw solid #FFFFFF;
        border-radius: 5.708vw;
        font-size: 3.833vw;
        line-height: 4.250vw;
        margin-right: 0.885vw;
        transition: all 0.3s ease;
        margin-bottom: 3vw;
    }
    
    .cookie-accept{
        padding: 2.625vw 4.240vw;
        width: 50vw;
        border: 0.5vw solid #EF0A5F;
        border-radius: 5.708vw;
        font-size: 3.833vw;
        line-height: 4.250vw;
        margin-right: 0.885vw;
        transition: all 0.3s ease;
        margin-bottom: 3vw;
    }
    
    .cookie-decline:hover{
        background-color: #3a3a3a;
    }
    
    .cookie-accept:hover{
        background-color: #CC084F;
        border: 0.104vw solid #CC084F;
    }
}

@keyframes cookie-show-up {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}