/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 3 Sep 2022, 07:54:58
    Author     : s1npl
*/

*{
    margin: 0;
}

p{
    margin: 24px 0;
    line-height: 2;
}

.wrapper {
    padding: 32px;
}

.cookie-container{
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #ffffff;
    color: #a5a5a5;
    padding: 0 32px;
    box-shadow: 0 -2px 16px rgba(47, 54, 64);
    
    transition: 400ms;
}

.cookie-container.active{
    bottom: 0;
}

.cookie-container a{
    color: #f5f6fa;
}

.cookie-btn{
    background: #ffb70c;
    border: 0;
    color: #f5f6fa;
    padding: 12px 48px;
    font-size: 18px;
    margin-bottom: 16px;
    border-radius: 8px;
    cursor: pointer;
}