:root {
    /* Ensure all variable values are populated on all IE 11 fallbacks throughout this CSS file */
    --white: #fff;
    --white-hover: #19447610;
    --primary: #194476;
    --primary-hover: #001F43;
}

.cassie-widget {
    display:none;
}

.cassie-d-none {
    display: none;
}

.cassie-cookie-module {
    margin: 0;
    font-family: "Averta",sans-serif;
    font-weight: 400;
    height: 100%;
    width: 100%;
    position: absolute;
    display:flex;
    align-items: center;
    
}

/* Styles all buttons within the cookie widget */
.cassie-cookie-module button {
    font-family: "Averta",sans-serif;
}

/* Overlay */
.cassie-cookie-module > .cassie-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 999;
}

/* Pre Banner Start */
/* Pre Banner Mobile */
.cassie-cookie-module > .cassie-pre-banner {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-self: flex-start;
    flex-wrap: wrap;
    z-index: 9999;
    background-color: #fff; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--white);
    margin: 10px;
    border-radius: 10px;
    border-left: 15px solid;
    border-right: 15px solid;
    border-color: #fff; /* IE11 Fallback (this value must match the value of the variable below) */
    border-color: var(--white);
}

.cassie-pre-banner > .cassie-pre-banner--text {
    color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    color: var(--primary);
    padding: 30px;
    font-size: 14px;
    line-height: 1.6;
}

.cassie-pre-banner .cassie-pre-banner--button--container {
    width: 100%;
    margin: 0 30px 15px;
}

.cassie-pre-banner--button--container .cassie-pre-banner--button {
    width: 100%;
    border-radius: 5px;
    padding: 15px 0;
    margin: 10px 0;
    overflow-wrap: break-word;
    font-size: 14px;
    cursor: pointer;
}

.cassie-pre-banner--button--container .cassie-pre-banner--button:focus {
    outline: 3px dotted #fff;
    outline: 3px dotted var(--white);
    outline-offset: 2px;
}

.cassie-pre-banner .cassie-accept-all {
    background-color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--primary);
    color: #fff; /* IE11 Fallback (this value must match the value of the variable below) */
    color: var(--white);
    border: 1px solid;
    border-color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    border-color: var(--primary);
}

.cassie-pre-banner .cassie-reject-all {
    background-color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--primary);
    color: #fff; /* IE11 Fallback (this value must match the value of the variable below) */
    color: var(--white);
    border: 1px solid; 
    border-color: #fff; /* IE11 Fallback (this value must match the value of the variable below) */
    border-color: var(--white);
}

.cassie-pre-banner .cassie-view-all {
    margin-top: 20px;
    background-color: #fff; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--white);
    color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    color: var(--primary);
    border: 0;
    border: 1px solid;
    border-color:  #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    border-color: var(--primary);
}

.cassie-view-all--button--icon {
    fill: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    fill: var(--primary);
    vertical-align: middle;
}

/* Pre Banner Tablet */
@media only screen and (min-width: 768px) {
    .cassie-cookie-module > .cassie-pre-banner {
        flex-wrap: nowrap;
        padding: 20px 0;
        align-self: center;
    }

    .cassie-pre-banner .cassie-pre-banner--text {
        width: 60%;

    }
    .cassie-pre-banner .cassie-pre-banner--button--container {
        width: 40%;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cassie-pre-banner--button--container .cassie-pre-banner--button {
        width: 70%;
    }
}

.cassie-bottom .cassie-pre-banner--button {
    padding: 15px 20px;
}

/* Pre Banner Desktop */
@media only screen and (min-width: 992px) {
    .cassie-cookie-module > .cassie-pre-banner {
        margin: 0 15%;
    }

    /* Pre Banner Top */
    .cassie-cookie-module .cassie-top {
        align-self: flex-start;
        margin: 0;
        flex-wrap: nowrap;
        padding: 0;
        border-radius: 0;
    }

    .cassie-top .cassie-pre-banner--text {
        text-align: left;
        width: 50%;
        margin: 0 0 0 10px;
        padding: 0;
        display: flex;
        align-items: center;
    }
    
    .cassie-top .cassie-pre-banner--button--container {
        width: 50%;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    .cassie-top .cassie-pre-banner--button {
        width: 25%;
        margin: 10px
    }

    /* Pre Banner Bottom */
    .cassie-cookie-module .cassie-bottom {
        align-self: flex-end;
        margin: 0;
        flex-wrap: nowrap;
        padding: 0;
        border-radius: 0;
    }

    .cassie-bottom .cassie-pre-banner--text {
        text-align: left;
        width: 50%;
        margin: 0 0 0 10px;
        padding: 0;
        display: flex;
        align-items: center;
    }
    
    .cassie-bottom .cassie-pre-banner--button--container {
        width: 50%;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    .cassie-bottom .cassie-pre-banner--button {
        width: auto;
        margin: 10px;
    }

    .cassie-pre-banner .cassie-accept-all:hover {
        background-color: #001F43; /* IE11 Fallback (this value must match the value of the variable below) */
        background-color: var(--primary-hover);
        cursor: pointer;
    }
    
    .cassie-pre-banner .cassie-reject-all:hover {
        background-color: #001F43; /* IE11 Fallback (this value must match the value of the variable below) */
        background-color: var(--primary-hover);
        color: #fff; /* IE11 Fallback (this value must match the value of the variable below) */
        color: var(--white);
        cursor: pointer;
    }

    .cassie-pre-banner .cassie-view-all:hover {
        cursor: pointer;
        border-radius: 4px;
        background: var(--white-hover);
        border-bottom: 1px solid;
        border-color: #001F43; /* IE11 Fallback (this value must match the value of the variable below) */
        border-color: var(--primary-hover);
    }
}

@media only screen and (min-width: 1200px) {
    .cassie-cookie-module > .cassie-pre-banner {
        margin: 0 30%;
    }

    .cassie-cookie-module .cassie-top {
        margin: 0;
    }

    .cassie-top .cassie-pre-banner--button {
        width: 20%;
    }

    .cassie-cookie-module .cassie-bottom {
        margin: 0;
    }

    .cassie-bottom .cassie-pre-banner--button {
        width: auto;
    }
}


@media only screen and (min-width: 1600px) {
    .cassie-top .cassie-pre-banner--button {
        width: 15%;
    }

    .cassie-bottom .cassie-pre-banner--button {
        width: auto;
    }
}

/* Pre Banner End */

/* Cookie Modal Start */

/* Cookie Modal Mobile */

.cassie-cookie-module .cassie-cookie-modal::-webkit-scrollbar {
    width: 10px;
  }
  
/* Track */
.cassie-cookie-module .cassie-cookie-modal::-webkit-scrollbar-track {
    background-color: #fff;
}

/* Handle */
.cassie-cookie-module .cassie-cookie-modal::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.1);
}

/* Handle on hover */
.cassie-cookie-module .cassie-cookie-modal::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0,0,0,0.3);
}

/* modal right style */
.cassie-cookie-module .cassie-cookie-modal--right::-webkit-scrollbar {
    width: 5px;
  }
  
/* Track */
.cassie-cookie-module .cassie-cookie-modal--right::-webkit-scrollbar-track {
    background-color: #194476;  /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--primary);
}

/* Handle */
.cassie-cookie-module .cassie-cookie-modal--right::-webkit-scrollbar-thumb {
    background-color: #194476;  /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--primary);
}

/* Handle on hover */
.cassie-cookie-module .cassie-cookie-modal--right::-webkit-scrollbar-thumb:hover {
    background-color: #001F43;  /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--primary-hover);
}

/* modal center style */
.cassie-cookie-module .cassie-cookie-modal--center::-webkit-scrollbar {
    width: 5px;
  }
  
/* Track */
.cassie-cookie-module .cassie-cookie-modal--center::-webkit-scrollbar-track {
    background-color: #194476;  /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--primary);
}

/* Handle */
.cassie-cookie-module .cassie-cookie-modal--center::-webkit-scrollbar-thumb {
    background-color: #194476;  /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--primary);
}

/* Handle on hover */
.cassie-cookie-module .cassie-cookie-modal--center::-webkit-scrollbar-thumb:hover {
    background-color: #001F43;  /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--primary-hover);
}

.cassie-cookie-module > .cassie-cookie-modal {
    position: absolute;
    z-index: 99999;
    top: 0; 
    bottom: 0; 
    left: 0; 
    right: 0;
    overflow: auto;
    overflow-y: scroll;
    -ms-overflow-y: scroll;
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
    padding: 20px;
    background-color: #fff; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--white);
    color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    color: var(--primary);
}

/* modal right style */
.cassie-cookie-module > .cassie-cookie-modal--right {
    position: absolute;
    z-index: 99999;
    top: 0; 
    bottom: 0; 
    right: 0;
    overflow: auto;
    overflow-y: scroll;
    -ms-overflow-y: scroll;
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
    padding: 20px;
    background-color: #fff; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--white);
    color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    color: var(--primary);
}

/* modal center styles */
.cassie-cookie-module > .cassie-cookie-modal--center {
    position: absolute;
    z-index: 99999;
    top: 0; 
    bottom: 0; 
    overflow: auto;
    overflow-y: scroll;
    -ms-overflow-y: scroll;
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
    padding: 20px;
    background-color: #fff; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--white);
    color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    color: var(--primary);
}

.cassie-cookie-modal--header {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-self: flex-start;
    flex-shrink: 0; /* IE11 fix */
}

.cassie-cookie-modal--header .cassie-cookie-modal--top-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.cassie-cookie-modal--top-header > .cassie-cookie-modal--header-image {
    max-width: 60%;
    margin: 10px 0;
}

.cassie-cookie-modal--header-image img {
    width: 100%;
}

.cassie-cookie-modal--top-header .cassie-close-modal--container {
    display: flex;
    justify-content: flex-end;
    width: 40%;
}

.cassie-cookie-modal--top-header .cassie-close-modal-button {
    font-size: 35px;
    font-weight: 600;
    margin-top: -20px;
    padding: 0 10px;
    color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    color: var(--primary);
    cursor: pointer;
    background-color: #fff;
    background-color: var(--white);
    font-size: 35px;
    line-height: 30px;
    border: none;
    height: 50px;
}

.cassie-cookie-modal--header .cassie-cookie-modal--header--content {
    width: 100%;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 10px;
    padding-top: 10px;
    word-wrap: break-word; /* IE 11 fix */
}

.cassie-cookie-modal--header--content a {
    color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    color: var(--primary);
}

.cassie-cookie-modal .cassie-cookie-modal--main {
    display: flex;
    align-self: flex-start;
    width: 100%;
    flex-shrink: 0; /* IE11 fix */
}

.cassie-cookie-modal--main > .cassie-cookie-modal--cookies--container {
    width: 100%;
}

/* Tab Styles */
.cassie-cookie-modal--cookies--container > .cassie-cookie-modal--tabs--container {
    width: 100%;
    display: flex;
}

.cassie-cookie-modal--tabs--container .cassie-tab--button {
    width: 50%;
    background-color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--primary);
    color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    color: var(--primary);
    height: 44px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    
}

.cassie-cookie-modal--tabs--container .cassie-active--button {
}

.cassie-cookie-modal--tab-group .cassie-cookie-modal--group {
    display: flex;
    flex-wrap: wrap;
}

.cassie-cookie-modal--tab-group .cassie-cookie-modal--select--group {
    display: flex;
}

.cassie-cookie-modal--tab-group .cassie-cookie-modal--group:nth-last-child(0) {
    border-bottom: none;
}

.cassie-cookie-modal--group .cassie-cookie-modal--group-head-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.cassie-expand-cookies--container .cassie-expand-cookies--icon {
    transition: 300ms transform ease-in-out;
}

.cassie-expand-cookies--container .cassie-expand-cookies--icon--open {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    background: #194476!important;
}

.cassie-cookie-modal--group-head-container .cassie-expand-cookies--container {
    display: flex;
    padding: 10px 0;
    width: 60%;
    cursor: pointer;
}

.cassie-expand-cookies--container .cassie-cookie-group--heading {
    margin: 0 7px;
    line-height: 1.6;
    color: #194476;
	color: var(--primary);
	font-weight: bold;
	/* font-size: 16px!important; */
}

.cassie-cookie-modal .cassie-expand-cookies--container h1.cassie-cookie-group--heading {
    font-size: 22px;
}
 
.cassie-cookie-modal .cassie-expand-cookies--container h2.cassie-cookie-group--heading {
    font-size:20px;
}
 
.cassie-cookie-modal .cassie-expand-cookies--container h3.cassie-cookie-group--heading {
    font-size: 18px;
}
 
.cassie-cookie-modal .cassie-expand-cookies--container h4.cassie-cookie-group--heading {
    font-size: 16px;
}
 
.cassie-cookie-modal .cassie-expand-cookies--container h5.cassie-cookie-group--heading {
    font-size:14px;
}
 
.cassie-cookie-modal .cassie-expand-cookies--container h6.cassie-cookie-group--heading {
    font-size: 12px;
}

.cassie-cookie-modal--group-head-container .cassie-cookie-group--description {
    width: 75%;
    margin: 0 0 10px 25px;
    font-size: 14px;
    line-height: 1.6;
}

.cassie-cookie-modal--group .cassie-cookie-children--container {
    width: 100%;
    padding: 15px;
    color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    color: var(--primary);
    display: none;
    transition: 0.2s linear;
}

.cassie-cookie-modal--group .cassie-cookie-children--container--open {
    display: block;
    transition: 0.2s linear;
}

.cassie-cookie-children--container > .cassie-cookie--child {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
    background: #fff;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 4px;
}

.cassie-cookie--child--heading{
	color: var(--primary);
	font-weight: bold;
	font-size: 14px!important;
}

.cassie-cookie--child > .cassie-cookie--child--heading {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    width: 60%;
}

.cassie-cookie--child--description {
    color: #194476;
	color: var(--primary);
}

.cassie-cookie--child .cassie-cookie--child--description{
    width: 75%;
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #194476;
    color: var(--primary);
}

/* Switches and Radio Buttons */

.cassie-cookie-modal--header .cassie-cookie-modal--accept-all {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    margin: 10px 0 20px;
    width: 100%;
}

.cassie-cookie-modal--accept-all .cassie-cookie-modal--accept-all--text {
    font-size: 14px;
    font-weight: 600;
}

.cassie-cookie-modal .cassie-toggle-switch {
    position: relative;
    width: 50px;
    height: 24px;
    margin-left: 10px;
    float: right;
    cursor: pointer;
}

.cassie-cookie-modal .cassie-long-labels--parent {
    line-height: 0.8;
}


.cassie-cookie-modal .cassie-toggle-switch:focus-within {
    outline: 3px dotted #194476;
}

.cassie-cookie-modal .cassie-child-cookie--toggle-switch:focus-within {
    outline: 3px dotted #000;
}

.cassie-cookie-modal .cassie-cookie-group--toggle-switch {
    margin-top: 10px;
}

.cassie-cookie-modal .cassie-toggle-switch--status {
    position: relative;
    right: 0px;
    font-size: 14px;
    width: 100%;
    top: 30px;
    display: block;
    text-align: center;
    color: var(--primary);
}

.cassie-cookie-modal .cassie-long-labels {
    right: 55px;
}

.cassie-cookie-modal .cassie-toggle-switch--checkbox {
    opacity: 0;
    width: 90px;
    height: 24px;
    z-index: 1;
    position: relative;
    bottom: 27px;
    right: 48px;
    cursor: pointer;
}


.cassie-cookie-modal .cassie-toggle-switch--slider {
    position: absolute;
    cursor: pointer;
    width: 3em;
    height: 1.5em;
    top: 0;
    left: 0;
    border-radius: 1em;
    background-color: #757575;
    border: 1px solid #757575;
}

.cassie-cookie-modal .cassie-toggle-switch--slider:before {
    position: absolute;
    content: "";
    height: calc(1.5em - 2px);
    width: calc(1.5em - 2px);
    left: 0;
    background-color: #fff;
    background-color: var(--white);
    border: 1px solid #757575;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 1em;
}

/* Active Switches */

.cassie-cookie-modal .cassie-toggle-switch--slider--active {
    background-color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--primary);
    border-color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    border-color: var(--primary);
}

.cassie-cookie-modal .cassie-toggle-switch--slider--active:before {
    left: 1.5em;
    border-color: #194476!important;
}

/* Toggle Center */
.cassie-cookie-modal--center .cassie-toggle-switch {
    position: relative;
    width: 50px;
    height: 24px;
    margin-left: 10px;
    float: right;
    cursor: pointer;
}

.cassie-cookie-modal--center .cassie-long-labels--parent {
    line-height: 0.8;
}


.cassie-cookie-modal--center .cassie-toggle-switch:focus-within {
    outline: 3px dotted #fff;
    outline: 3px dotted var(--white);
}

.cassie-cookie-modal--center .cassie-child-cookie--toggle-switch:focus-within {
    outline: 3px dotted #000;
}

.cassie-cookie-modal--center .cassie-cookie-group--toggle-switch {
    margin-top: 10px;
}

.cassie-cookie-modal--center .cassie-toggle-switch--status {
    position: relative;
    right: 50px;
    font-size: 14px;
    top: -2px;
}


.cassie-cookie-modal--center .cassie-long-labels {
    right: 55px;
}

.cassie-cookie-modal--center .cassie-toggle-switch--checkbox {
    opacity: 0;
    width: 90px;
    height: 24px;
    z-index: 1;
    position: relative;
    bottom: 27px;
    right: 48px;
    cursor: pointer;
}

.cassie-cookie-modal--center .cassie-toggle-switch--slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 7px;
    bottom: 0;
    border-radius: 34px;
    background-color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--primary);
    border: 1px solid;
    border-color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    border-color: var(--primary);
}

.cassie-cookie-modal--center .cassie-toggle-switch--slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: #fff; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--white);
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

/* Active Switches */

.cassie-cookie-modal--center .cassie-toggle-switch--slider--active {
    background-color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--primary);
}

.cassie-cookie-modal--center .cassie-toggle-switch--slider--active:before {
    left: 21px;
}


/* Toggle Right*/
.cassie-cookie-modal--right .cassie-toggle-switch {
    position: relative;
    width: 50px;
    height: 24px;
    margin-left: 10px;
    float: right;
    cursor: pointer;
}

.cassie-cookie-modal--right .cassie-long-labels--parent {
    line-height: 0.8;
}


.cassie-cookie-modal--right .cassie-toggle-switch:focus-within {
    outline: 3px dotted #fff;
    outline: 3px dotted var(--white);
}

.cassie-cookie-modal--right .cassie-child-cookie--toggle-switch:focus-within {
    outline: 3px dotted #000;
}

.cassie-cookie-modal--right .cassie-cookie-group--toggle-switch {
    margin-top: 10px;
}

.cassie-cookie-modal--right .cassie-toggle-switch--status {
    position: relative;
    right: 50px;
    font-size: 14px;
    top: -2px;
}

.cassie-cookie-modal--right .cassie-long-labels {
    right: 55px;
}

.cassie-cookie-modal--right .cassie-toggle-switch--checkbox {
    opacity: 0;
    width: 90px;
    height: 24px;
    z-index: 1;
    position: relative;
    bottom: 27px;
    right: 48px;
    cursor: pointer;
}

.cassie-cookie-modal--right .cassie-toggle-switch--slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 7px;
    bottom: 0;
    border-radius: 34px;
    background-color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--primary);
    border: 1px solid;
    border-color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    border-color: var(--primary);
}

.cassie-cookie-modal--right .cassie-toggle-switch--slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: #fff; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--white);
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

/* Active Switches */

.cassie-cookie-modal--right .cassie-toggle-switch--slider--active {
    background-color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--primary);
}

.cassie-cookie-modal--right .cassie-toggle-switch--slider--active:before {
    left: 21px;
}


.cassie-accept-all--toggle-switch .cassie-accept-all--no-labels {
    bottom: 0;
}

.cassie-cookie-group--toggle-switch .cassie-group--no-labels {
    bottom: 10px;
}

.cassie-child-cookie--toggle-switch .cassie-child--no-labels {
    bottom: 5px;
}

/* high contrast switches */
@media screen and (forced-colors: active) {
    .cassie-cookie-modal .cassie-toggle-switch--slider:before { 
        background: windowText; 
    } 
    .cassie-cookie-modal--right .cassie-toggle-switch--slider:before { 
        background: windowText; 
    } 
    .cassie-cookie-modal--center .cassie-toggle-switch--slider:before { 
        background: windowText; 
    } 
}

@media screen and (-ms-high-contrast: active) {
    .cassie-cookie-modal .cassie-toggle-switch--slider:before { 
        background: windowText; 
    } 
    .cassie-cookie-modal--right .cassie-toggle-switch--slider:before { 
        background: windowText; 
    } 
    .cassie-cookie-modal--center .cassie-toggle-switch--slider:before { 
        background: windowText; 
    } 
}


/* Cookie Modal Footer */

.cassie-cookie-modal .cassie-cookie-modal--footer {
    width: 100%;
    margin-top: auto;
    flex-shrink: 0; /* IE11 fix */
}

.cassie-cookie-modal--footer .cassie-cookie-modal--footer-content {
    width: 100%;
    font-size: 14px;
    line-height: 1.6;
}

.cassie-cookie-modal--footer-content a {
    color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    color: var(--primary);
}

.cassie-cookie-modal--footer .cassie-cookie-modal--footer-extra {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
}

.cassie-cookie-modal--footer-extra .cassie-cookie-modal--save-preferences--container {
    width: 100%!important;
    max-width: 100%!important;
    display: contents;
}

.cassie-cookie-modal--save-preferences--container .cassie-cookie-modal--save-preferences {
    border-radius: 5px;
    background-color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--primary);
    color: #fff; /* IE11 Fallback (this value must match the value of the variable below) */
    color: var(--white);
    border: 1px solid;
    border-color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    border-color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    padding: 0 10px;
    cursor: pointer;
    min-height: 50px;
    width: 100%!important;
    min-width: 100%!important;
}

.cassie-cookie-modal--save-preferences--container .cassie-cookie-modal--save-preferences:hover {
    background-color: #001F43; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--primary-hover);
    border-color: #001F43; /* IE11 Fallback (this value must match the value of the variable below) */
    border-color: var(--primary-hover);
}

.cassie-cookie-modal--save-preferences--container .cassie-cookie-modal--save-preferences:focus {
    outline: 3px dotted #fff;
    outline: 3px dotted var(--white);
    outline-offset: 2px;
}

.cassie-cookie-modal--footer-extra .cassie-cookie-modal--footer-image--container {
    display: flex;
    justify-content: flex-end;
    width: 60%;
    padding: 10px 0;
}

.cassie-cookie-modal--footer-image--container .cassie-cookie-modal--footer-image {
    /* scaled image down to 4% */
    width: 97px; 
    height: 28px;
}

/* Cookie Modal Tablet */

@media only screen and (min-width: 768px) {
    
    /* modal right style */
    .cassie-cookie-module > .cassie-cookie-modal--right {
        width: 60%;
        border-left: 15px solid;
        border-color: #fff; /* IE11 Fallback (this value must match the value of the variable below) */
        border-color: var(--white);
        border-right: none;
        left: unset;
    }

    /* modal centre style */
    .cassie-cookie-module > .cassie-cookie-modal--center {
        margin: 0 15%;
        width: 70%;
        /* box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.6); */
        align-self: center;
        top: unset;
        bottom: unset;
    }

    .cassie-cookie-modal--top-header .cassie-cookie-modal--header-image {
        max-width: 50%;
    }

    .cassie-cookie-modal--top-header .cassie-close-modal--container {
        width: 50%;
    }

}

/* Cookie Modal Desktop */

@media only screen and (min-width: 992px) {
    .cassie-cookie-module > .cassie-cookie-modal {
        width: 50%;
    }

    /* modal right style */
    .cassie-cookie-module > .cassie-cookie-modal--right {
        width: 35%;
    }

    /* modal centre style */
    .cassie-cookie-module > .cassie-cookie-modal--center {
        height: 90%;
        margin: 0 25%;
        width: 50%;
    }
}

/* Cookie Modal Large Desktops */
@media only screen and (min-width: 1200px) {
    .cassie-cookie-module > .cassie-cookie-modal {
        width: 50%;
    }

    /* modal right style */
    .cassie-cookie-module > .cassie-cookie-modal--right {
        width: 25%;
    }

    /* modal centre style */
    .cassie-cookie-module > .cassie-cookie-modal--center {
        margin: 0 30%;
        width: 40%;
    }
}

/* Cookie Modal XL Desktops */
@media only screen and (min-width: 1500px) {
    .cassie-cookie-module > .cassie-cookie-modal {
        width: 50%;
    }
    
    /* modal right style */
    .cassie-cookie-module > .cassie-cookie-modal--right {
        width: 20%;
    }

    /* modal centre style */
    .cassie-cookie-module > .cassie-cookie-modal--center {
        margin: 0 35%;
        width: 30%;
        height: 70%;
    }
}



/* Cookie Modal End */


/* Manage Cookies Start */
#cassie-widget > .cassie-manage-cookies--container {
    bottom: 0;
    position: fixed;
    margin: 10px;
    z-index: 9999;
}

.cassie-manage-cookies--container > .cassie-manage-cookies--button {
    border-radius: 15px;
    min-height: 44px;
    padding: 0 10px;
    border: none;
    background-color: #fff; /* IE11 Fallback (this value must match the value of the variable below) */
    background-color: var(--white);
    color: #194476; /* IE11 Fallback (this value must match the value of the variable below) */
    color: var(--primary);
    transition: 0.2s linear;
    cursor: pointer;
}

.cassie-manage-cookies--container .cassie-manage-cookies--button:focus {
    outline: 3px dotted #fff;
    outline: 3px dotted var(--white);
    outline-offset: 2px;
}

.cassie-manage-cookies--container .cassie-manage-cookies--button--text {
    display: none;
}

@media only screen and (min-width: 992px) {
    
    .cassie-manage-cookies--container .cassie-manage-cookies--button {
        min-width: 150px;
        margin-bottom: -15px;
    }
    
    .cassie-manage-cookies--container .cassie-manage-cookies--button:hover {
        margin-bottom: 0px !important;
        
    }

    .cassie-manage-cookies--container .cassie-arrow-down--hover {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #f00;
        margin: 0 auto;
    }
    
}
/* Manage Cookies End */

/* Utilities */
.d-none{
    display:none;
}
.d-block{
    display:block;
}
.d-flex{
    display: flex;
}

.cassie-cookie-children--container {
    margin-left: 10px;
}

.toggle-switch--status {
	right: 50px;
}

.toggle-switch:focus{
    outline: 1px solid #fff;
	outline: 1px solid var(--white);
}

.expand-cookies--icon{
    fill: #194476;
	fill: var(--primary);
}
.cookie-children--container{
    color: #fff;
	color: var(--white);
}

.manage-cookies--container{
	visibility: hidden;
}

#expand_strictly_necessary{
	width: 100%;
}

.cookie--child--heading {
    color: #fff;
	color: var(--white);
	text-transform: uppercase;
	font-weight: bold;
}

.cookie-group--heading{
    color: #fff;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
}

/* For safari mobile as does not accept background images */
@media only screen and (max-device-width: 480px){
	.cookie-modal{
        background-color: #fff;
		background-color: var(--white);
		background-image: none;
	}
	.pre-banner{
        background-color: #fff;
		background-color: var(--white);
		background-image: none;
	}
	.cookie-children--container{
        background-color: #fff;
		background-color: var(--white);
		background-image: none;
	}

}
/* END OF COOKIE BANNER STYLING */

.buttonizer-group-0-0-1{
	z-index: 99!important;
}

/*---Hide reCaptcha v3 visible seal---*/
.grecaptcha-badge {
    opacity:0 !important;
}

#primary:after, #primary:before, #secondary:after, #secondary:before, .ast-container:after, .ast-container:before, .ast-row:after, .ast-row:before, .clear:after, .clear:before, .sidebar-main:after, .sidebar-main:before, .site-content:after, .site-content:before, .site-footer:after, .site-footer:before, .site-header:after, .site-header:before, .site-main:after, .site-main:before {
    content: "";
    display: table;
    display:  none;
}

.cassie-expand-cookies--icon {
    background: #c6d0dd;
    border-radius: 100%;
    border: 1px solid #c6d0dd;
    margin-top: 3px;
    height: 20px;
    width:20px;
}

.cassie-cookie-children--container--open .cassie-cookie--child:last-child p {
    margin-bottom: 0;
}

.cassie-cookie-children--container--open .cassie-cookie--child:last-child {
    margin-bottom: 0;
}

.cassie-expand-cookies--container .cassie-expand-cookies--icon.cassie-expand-cookies--icon--open {
    fill: #fff!important;
    background: var(--primary);
    border-color: var(--primary);
}

#cassie_header_content {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.cassie-cookie-modal--select--group {
    background: #e6e6e6;
    margin-bottom: 15px;
    border-radius: 4px;
    padding: 15px;
}

.cassie-cookie-modal--select--group:hover .cassie-expand-cookies--icon {
    background: #ADB7C4;
}

.cassie-cookie-modal--select--group:hover .cassie-expand-cookies--container .cassie-cookie-group--heading {
    text-decoration: underline;
}

p#cassie_strictly_necessary_description {
    width: 100%;
}

p#cassie_strictly_necessary_description_cookie_banner {
    width: 100%;
}

p#cassie_strictly_necessary_description_google_tag\ manager {
    width: 100%;
}

div#cassie_strictly_necessary_child_cookie_cookie_banner {
    background: #e6e6e6;
}

div#cassie_strictly_necessary_child_cookie_google_tag\ manager {
    background: #e6e6e6;
}

.cookie-prefs-button {

    margin-top: 15px;
    
border: 1px solid #ddd;

    border-radius: 0;

    background: #fff;

    color: #000;

    padding: 10px;

}

.cookie-prefs-button.goss {
    background: none;
    padding: 0;
    padding-top: 40px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 12px;
}

.cookie-prefs-button.goss-header {
    padding: 0;
    margin: 0;
    color: var(--primary);
    text-decoration: underline;   
    font-size: inherit; 
    background: #f7f7f7;
}

p.cookie-prefs-alert-p {
padding: 10px;
background: #f7f7f7;
border-radius: 4px;
}

.cassie-cookie-module.cassie-d-none {
    display: none;
}