/* .cookieConsentContainer{
	z-index: 999;
	width: 650px;
	min-height: 20px;
	box-sizing: border-box;
	padding: 30px 30px 30px 30px;
	background-color: rgba(35,35,35,0.9);
	overflow: hidden;
	position: fixed;
	bottom: 15px;
	right: 15px;
	display: none;
}

.cookieConsentContainer .cookieTitle a{
	color:#fff;
	font-size:22px;
	line-height:20px;
	display:block;
}

.cookieConsentContainer .cookieDesc p{
	margin:0;
	padding:0;
	color:#fff;
	font-size:13px;
	line-height:20px;
	display:block;
	margin-top:10px;
}

.cookieConsentContainer .cookieDesc a{
	font-family:OpenSans,arial,sans-serif;
	color:#fff;
	text-decoration:underline;
}

.cookieConsentContainer .cookieButton a{
	box-sizing: border-box;
	-webkit-appearance: none;
		-moz-appearance: none;
			appearance: none;
	background-color: transparent;
	border: 2px solid #fff;
	border-radius: 0.6em;
	color: #fff;
	cursor: pointer;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: inline-block;
	-webkit-align-self: center;
		-ms-flex-item-align: center;
			align-self: center;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1;
	padding: 1.0em 4.5em;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: 14px;
}
.cookieConsentContainer, .cookieButton a:hover, .cookieButton a:focus{
	cursor:pointer;
	color: #212121;
	outline: 0;
}

.cookieConsentContainer, .cookieButton a {
	-webkit-transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
	transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}

.cookieButton a:hover {
	box-shadow: 0 0 40px 40px #FFF inset;
}

@media (max-width:980px){
	.cookieConsentContainer{
		bottom:0!important;
		left:0!important;
		width:100%!important
	}
} */

#cookieNotice.display-right {
    right: 15px;
    left: 15px;
    bottom: 30px;
    max-width: 395px;

    /* bottom: 30px;
    max-width: 100%;
    right: 50%;
    transform: translate(50%); */
}
#cookieNotice.light {
    background-color: #fff;
    color: #393d4d;
}
#cookieNotice {
    box-sizing: border-box;
    position: fixed;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 6px rgb(0 0 0 / 25%);
    font-family: inherit;
    z-index: 9999;
}
#cookieNotice #closeIcon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: #bfb9b9;
    overflow: hidden;
    opacity: .85;
    z-index: 999999;
    position: absolute;
    top: 0;
    right: 0;
    /* background: url(../img/cookie-icon.svg) 0 0 / 20px 20px no-repeat; */
}
#cookieNotice * {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
#cookieNotice .title-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background: url(../img/cookie-icon.svg) 0 0 / 40px 40px no-repeat;
    padding-left: 45px;
    height: 40px;
}
#cookieNotice .title-wrap svg {
    margin-right: 10px;
}
#cookieNotice h4 {
    font-family: inherit;
    font-weight: 700;
    font-size: 18px;
}
#cookieNotice.light p, #cookieNotice.light ul {
    color: #393d4d;
}
#cookieNotice p, #cookieNotice ul {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: justify;
}
#cookieNotice .link-wrap{
    color:#144CAD;
    font-weight: 600;
    transition: all 0.3s;
}
#cookieNotice .link-wrap:hover{
    color:#3475EC;
}
#cookieNotice .btn-wrap {
    display: flex;
    flex-direction: row;
    font-weight: 700;
    justify-content: center;
    margin: 0 -5px 0 -5px;
    flex-wrap: wrap;
}
#cookieNotice .btn-wrap button {
    flex-grow: 1;
    padding: 0 7px;
    margin: 0 5px 10px 5px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    min-width: 130px;
    line-height: 36px;
    border: none;
    font-family: inherit;
    font-size: 16px;
    /* transition: box-shadow .3s; */
    transition: all 0.3s ease-in-out;

    /* position: absolute;
    right: 30px; */
}
#cookieNotice button {
    outline: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
#cookieNotice .btn-wrap button:hover {
    transition: box-shadow 0.3s cubic-bezier(.25,.8,.25,1),transform 0.3s cubic-bezier(.25,.8,.25,1);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 30%);
    transform: translate3d(0,0,0);
    /* background: #3375ec; */
	background-color: rgba(219, 177, 3, 1);
}
.btn-accept{
    color:#ffffff;
    /* background:#115cfa; */
    /* background: #ff6f80; */
	background-color: rgba(37, 14, 138, 1);;
    /* transition: all 0.3s ease-in-out; */
}