a:link {
	text-decoration: none;
	transition: background .3s ease, color .3s ease;
	-o-transition: background .3s ease, color .3s ease;
	-ms-transition: background .3s ease, color .3s ease;
    -webkit-transition: background .3s ease, color .3s ease;
}

.cc-window {
    position: fixed;
    display: flex;
    display: -ms-flexbox;
    z-index: 9999;
    padding: 1em 1.8em;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-direction: row;
    -ms-flex-direction: row;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
	text-align: justify;
	color: #fafafa;
    transition: opacity 1s ease;
    padding: 16px 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(16 18 27 / 40%);
    border-top: solid 1px rgba(113 119 144 / 25%);
    box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.75);
}

.cc-window.cc-floating {
    padding: 16px 32px;
    flex-direction: column;
    -ms-flex-direction: column;
}

.cc-window.cc-invisible {
    opacity: 0;
}

.cc-message {
    display: block;
    margin: 8px 0;
    max-width: 100%;
    flex: 1 1 auto;
    -ms-flex: 1 1 auto;
}

a.cc-link:link {
	color: #ffe477;
    text-decoration: underline;
}

a.cc-link:hover {
	color: #ffc473;
    text-decoration: underline;
}

.cc-btn {
    display: block;
    padding: 8px 16px;
    cursor: pointer;
    text-align: center;
    text-shadow: none;
    font-weight: 700;
    background: #ffe477 !important;
    border-radius: 4px;
    -webkit-transition: background .3s ease, color .3s ease;
    -ms-transition: background .3s ease, color .3s ease;
    -o-transition: background .3s ease, color .3s ease;
    transition: background .3s ease, color .3s ease;
}

.cc-btn:hover {
    text-decoration: none;
    background: #ffc473 !important;
}

.cc-bottom {
    bottom: 0;
}