* {
    padding: 0;
    margin: 0;
}

.back {
    height: 100vh;
}

.overlay {
    background-color: #000000;
    opacity: .9;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.cookies-box {
    /*Contenedor principal*/
    position: fixed;
    bottom: -200px;
    width: 100%;
    display: flex;
    justify-content: center;
    transition: all 500ms ease;
    background-color: transparent;
    height: 48px;
}

.cookies-box.activo {
    bottom: 0;
}

.cookies-box.oculto {
    display: none;
}

.cookies-box .container-cookies {
    padding: 0px 0;
    max-width: 90%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    z-index: 2; 
    height:45px;
}

.cookies-box .container-cookies .parrafo p {
    color: #fff;
    position: relative;
    font-size: 16px;
}

.cookies-box .container-cookies .botones {
    display: flex;
    flex-direction: row;
    background: #fac000;
    border: 2px solid #fac000;
    margin-left: 15px;
    border-radius: 30px;
    cursor: pointer;
}

.cookies-box .container-cookies .botones button {
    background: transparent;
    color: rgb(0, 0, 0);
    border: 2px solid #fac000;
    padding: 1px 10px;
    border-radius: 30px;
    transition: all 200ms ease-in;
    position: relative;
    cursor: pointer;
    font-size: 16px;
}