#cookie-consent .message {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 30px;
    box-shadow: 0 0 3px #ccc;
    z-index: 9999;
    border-bottom: 0px solid #000;
    border-top: 0px solid #000;
    background-color: #00a4e6;
}

#cookie-consent .message p {
    margin: 0 auto;
    text-align: center;
    color: #FFFFFF;
    font-size: 14px;
}

/*#cookie-consent .close-btn {*/
    /*padding: 5px 10px;*/
    /*position: absolute;*/
    /*right: 20px;*/
    /*border-radius: 0px;*/
    /*margin-top: -14px;*/
    /*color: #000;*/
    /*background-color: #FFF;*/
    /*border: 0px solid #000;*/
    /*text-decoration: none;*/
    /*cursor: pointer;*/
/*}*/
#cookie-consent .close-btn {
    position: absolute;
    right: 20px;
    margin-top: -20px;
    overflow: hidden;
    max-width: 100%;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    padding: 0 20px;
    border: none;
    border-radius: 30px;
    box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
    font-size: 20px;
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: #8dc63f;
    cursor: pointer;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

#cookie-consent .close-btn:hover {
    color: #fff !important;
    background-color: #9fc768;
}

#cookie-consent .more-info-btn, .more-info-btn:hover {
    color: #ed1782;
}

@media (min-width: 480px) {
    #cookie-consent .message p {
        position: relative;
        padding: 0 120px 0 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
        text-align: left;
    }

    #cookie-consent .message .close-btn {
        position: absolute;
        top: 50%;
        right: 0;
    }

    #cookie-consent .message .close-btn span {
        display: inline-block;
        line-height: 1.2;
        vertical-align: middle;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    #cookie-consent .message {
        padding: 10px;
    }

    #cookie-consent .message .close-btn {
        display: block;
        width: 50%;
        margin: 10px auto 0;
        position: static;
    }
}