/*COLOURS
@gold: #b07e49;
@black: #000505;
@textgrey: #4b4b46;
@darkgrey: #E2E2E2;
@lightgrey: #FBFCFF;

main colour - #2a5135

FONTS
font-family: 'Open Sans', sans-serif;
font-family: 'Lora', serif;
*/


div#my-cookies-alert {
    padding: 15% 10px 0 !important;
    /* Make text colour of website */
    color: #4b4b46 !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    /* Make main colour of website */
    border: 2px solid #2a5135;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height:100%;
    z-index: 9999;
    box-sizing: border-box;
    margin: 0px;
}

    div#my-cookies-alert,
    div#my-cookies-alert a,
    div#my-cookies-alert div {
        /* Make font choice of website */
        font-family: 'Open Sans', sans-serif !important;
        font-size: 12px !important;
        /* Make text colour of website */
        color: #2a5135 !important;
    }

        div#my-cookies-alert > div {
            margin: 0px auto 5px !important;
            max-width: 600px !important;
            background-color: #efefef !important;
            padding: 40px;
            border-radius: 20px;
        }

        div#my-cookies-alert div,
        div#my-cookies-alert a {
            font-size: 14px !important;
            /* Make font colour of website */
            color: #4b4b46 !important;
            /* Make font choice of website */
            font-family: 'Open Sans', sans-serif !important;
        }

        div#my-cookies-alert div.my-cookies-title {
            font-weight: bold !important;
            font-size: 18px !important;
            padding-bottom: 5px !important;
        }

            div#my-cookies-alert a.my-cookies-text {
                /* Make main colour of website */
                color: #2a5135 !important;
                font-weight: 600 !important;
                text-decoration: none !important;
            }

                div#my-cookies-alert a.my-cookies-text:hover {
                    /* Make second colour of website or shade of main color*/
                    color: #b07e49 !important;
                }

            div#my-cookies-alert a.my-cookies-button {
                margin: 10px 0 5px 10px !important;
                font-weight: normal !important;
                text-align: center !important;
                padding: 5px 5px !important;
                width: 120px !important;
                /* Make main colour of website */
                border: 1px solid #2a5135 !important;
                background: #fff;
                /* Make main colour of website */
                color: #2a5135 !important;
                text-decoration: none !important;
                display: inline-block !important;
                border-radius: 5px;
            }

                div#my-cookies-alert a.my-cookies-button:hover {
                    /* Make main colour of website */
                    background: #2a5135;
                    color: #fff !important;
                }


            div#my-cookies-alert a.my-cookies-recommended {
                /* Make main colour of website */
                background: #2a5135 !important;
                color: #fff !important;
            }

                div#my-cookies-alert a.my-cookies-recommended:hover {
                    /* Make second colour of website or shade of main color*/
                    background: #b07e49 !important;
                    border-color: #b07e49 !important;
                }


@media only screen and (max-width: 650px) {
    div#my-cookies-alert a.my-cookies-button {
        width: auto !important;
    }
}

@media only screen and (max-width: 500px) {
    div#my-cookies-alert a.my-cookies-text,
    div#my-cookies-alert a.my-cookies-button {
        text-align: center !important;
        min-width: 120px !important;
        max-width: 200px !important;
        display: block !important;
        margin: 5px auto 10px auto !important;
    }
}
