.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 1100;
    opacity: 0;
    border-radius: 0;
    transform: translateY(100%);
    transition: all .5s ease-out;
    padding: 6px !important;
}
.cookiealert-inn{
    color: #ecf0f1;
    background: #212327;
    padding: 8px !important;
    -webkit-box-shadow: 0 0 2px #202020;
    box-shadow: 0 0 2px #202020;
    position: relative;
    float: left;
    width: 100%;
}
.cookiealert-inn-border{
    border: 1px solid #fff;
    padding: 8px;
    position: relative;
    float: left;
    width: 100%;
}
.cookiealert p {
    color: #fefefe;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0;
    width: 84%;
    display: inline-block;
    vertical-align: middle;
    padding-left: 24px;
    line-height: 18px;
}

.cookiealert.show {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
    border-radius: 0;
    color: #f6c50e;
    background: transparent;
    border-color: #f6c50e;
}
.cookiealert .acceptcookies:hover, .cookiealert .acceptcookies:focus {
    background: #f6c50e;
    border-color: #f6c50e;
    color: #000;
    font-weight: 500;
}


.decline {
    color: #fff;
    opacity: 1;
    font-size: 16px !important;
    cursor: pointer;
}
.decline:focus, .decline:hover {
    color: #fff;
    opacity: .8;
}

@media (max-width:900px) {
    .cookiealert p {
        width: 100%;
        margin-bottom: 10px;
        padding-left: 0
    }

    .cookiealrt-btn {
        float: right
    }

    .decline {
        position: absolute !important;
        top: 4px !important;
        right: 0px !important;
    }
}