/* Add here all your css styles (customizations) */

.acceptcookiescontainer {
    position: fixed;
    max-width: 100%;
    width: 100%;
    bottom: 0;
    padding: 20px 30px;
    background-color: #fff;
}

.cookiesrow {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

h2#cookiesheader {
    padding-top: 10px;
    margin-top: 0px;
}

.column-8 {
    -ms-flex: 0 0 66.666666%;
    flex: 0 0 66.666666%;
    max-width: 66.666666%;
}

.column-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

@media (max-width: 767px) {
    .column-8 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .column-4 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.message {
    position: relative
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.close {
    color: #f00;
    position: absolute;
    text-transform: lowercase;
    right: 20px;
    font-size: 1.5em;
    top: 10px;
    line-height: 1;
    border: none !important;
}

.btn-cookie {
    position: relative;
    transition: .2s ease;
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    border: 1px solid transparent;
}

.cookie--primary {
    color: #fff;
    font-weight: 500;
    background-color: #26304d;
    line-height: 1.4;
    padding: 0.57143rem 1.42857rem;
    font-size: 1.07143rem;
}

.cookie--primary:hover .cookie--primary:active,
.cookie--primary:focus {
    color: #fff;
    background-color: #26304d;
}

a.cookie--primary:hover,
a.cookie--primary:active,
a.cookie--primary:focus {
    color: #fff;
}

.cookie--secondry {
    color: #26304d;
    font-weight: 500;
    background-color: #dddddd;
    line-height: 1.4;
    padding: 0.57143rem 1.42857rem;
    font-size: 1.07143rem;
}

.cookie--secondry:hover .cookie--secondry:active,
.cookie--secondry:focus {
    color: #fff;
    background-color: #dddddd;
}

a.cookie--secondry:hover,
a.cookie--secondry:active,
a.cookie--secondry:focus {
    color: #fff;
}

.hidden {
    display: none;
}


/* Customize the label (the container) */

.radiocontainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hide the browser's default radio button */

.radiocontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Create a custom radio button */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}


/* On mouse-over, add a grey background color */

.radiocontainer:hover input~.checkmark {
    background-color: #ccc;
}


/* When the radio button is checked, add a blue background */

.radiocontainer input:checked~.checkmark {
    background-color: #26304d;
}


/* Create the indicator (the dot/circle - hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the indicator (dot/circle) when checked */

.radiocontainer input:checked~.checkmark:after {
    display: block;
}


/* Style the indicator (dot/circle) */

.radiocontainer .checkmark:after {
    top: 7px;
    left: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}