.accept-cookie-holder {
    position: fixed;
    right: 0px;
    bottom: 0px;
    left: 0px;
    padding: 30px 30px !important;
    background: #1e1e28;
    justify-content: space-between;
    align-items: center;
    display: flex;
    border-top: 1px solid rgba(250, 250, 250, 0.1);
    z-index: 1000000000000 !important;
}

.accept-cookie-holder p {
    color: #999;
}

.accept-cookie-holder button {
    background: rgba(50, 100, 250, 1.00);
    border: none;
    height: 50px;
    border-radius: 25px !important;
    color: #fff;
    width: 200px !important;
    transition: 0.2s ease-in-out;
}

.accept-cookie-holder button:hover {
    background: #fff;
    color: rgba(50, 100, 250, 1.00);
}

.show {
    display: block;
}

.hide {
    display: none;
}

/*start mobile coding for the cookie holder*/

@media screen and (max-width: 520px) {

    .accept-cookie-holder {
        flex-direction: column;
    }

    .accept-cookie-holder p {
        margin-bottom: 16px !important;
    }
    
    .accept-cookie-holder button {
        width: 100% !important;
    }

}