/*
Theme Name:     Salient Child
Theme URI:      http://example.com/
Description:    Child theme for the Salient theme
Author:         Ashok
Author URI:     http://example.com/about/
Template:       salient
Version:        8.5.1
*/

#privacy-consent {
    width: 100%;
    background: #2e2e2e;
    padding: 10px;
    position: fixed;
    top: 0;
    z-index: 99999;
    transition: all .2s;
    transition-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
    transform: translateY(0);
    box-shadow: 0px 0px 10px rgba(0,0,0, 0.5);
    text-align: center;
    color: white;
}

#privacy-consent.slide-up {
    transform: translateY(-100%);
}

#privacy-consent .consent-wrapper {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    text-align: center;
}

#privacy-consent a.accept {
    display: block;
    color: #fff;
    background: #3261ad;
    padding: 3px 13px;
    font-weight: bold;
}

#privacy-consent a.cancel {
    display: block;
    font-size: 0.8em;
    color: #ccc;
}
#privacy-consent.hidden {
    display: none;
}
