/**
 *  Module made by Nukium
 *
 *  @author    Nukium
 *  @copyright 2016 Nukium SAS
 *  @license   All rights reserved
 *
 * ███    ██ ██    ██ ██   ██ ██ ██    ██ ███    ███
 * ████   ██ ██    ██ ██  ██  ██ ██    ██ ████  ████
 * ██ ██  ██ ██    ██ █████   ██ ██    ██ ██ ████ ██
 * ██  ██ ██ ██    ██ ██  ██  ██ ██    ██ ██  ██  ██
 * ██   ████  ██████  ██   ██ ██  ██████  ██      ██
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

.nkmcookiealert {
    background: #fff;
    border-top: 1px solid #e5e5e5;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
	justify-content: center;
    -ms-flex-align: center;
	align-items: center;
    opacity: 0.9;
    padding: 6px;
    position: fixed; left: 0; bottom: 0;
    text-align: center;
    width: 100%;
    z-index: 9999;
}

.nkmcookiealert p {
    margin: .375rem 0;;
}

.nkmcookiealert p,
.nkmcookiealert a,
.nkmcookiealert .btn {
    display: inline-block;
}

.nkmcookiealert a,
.nkmcookiealert .btn {
    margin-left: 10px;
}

.nkmcookiealert a {
    font-size: .9375rem;
    padding: .375rem 0;
    position: relative;
}

.nkmcookiealert a:before {
    background-color: currentColor;
    content: "";
    height: 2px;
    position: absolute;
    bottom: .125rem;
    right: 0;
    width: 100%;
    transition: width .3s ease-in-out;
}

.nkmcookiealert a:hover {
	color: initial !important
}