.cookieContainerOuterArea {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
    height: 100vh;
    width: 100vw;
    z-index: 2000;
    transition: all 300ms ease;
}
.cookieContainerOuterArea.active {
    opacity: 1;
    transform:  translate(-50%, -50%) scale(1);
}
.cookieContainer {
    position: fixed;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
    color: #f5f6fa;
    padding: 15px 32px;
    box-shadow: 0 -2px 16px rgba(48, 55, 65, 0.4);
    opacity: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 300ms ease;
    width: 90%;
    overflow: auto;
    max-height: 85%;
    z-index: 2000;
}
.cookieContainer a {
    color: #f5f6fa;
}
.cookieContainer p {
    padding-bottom: 12px;
}
.cookie-btn-accept-all, .cookie-btn-settings {
    background-color: transparent;
    border: 1px solid white!important;
    border-radius: 3px;
    transition: .4s ease;
    color: white;
    outline: none;
}
.cookie-btn-accept-all:active, .cookie-btn-settings:active {
    background-color: rgba(255, 255, 255, 1);
    color: black!important;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.cookie-btn-accept-all:hover, .cookie-btn-settings:hover {
    background-color: rgba(255, 255, 255, 1);
    color: black!important;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.cookie-btn-accept-all:focus, .cookie-btn-settings:focus {
    outline: none;
}
.cookieContainerSettings {
    height: 0;
    overflow: hidden;
}
.cookieContainerSettings.open {
    height: auto;
}
.checkBoxContainer {
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
}
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    height: 17px;
    width: 17px;
    outline: none;
    transition: all 0.3s ease;
}
input[type="checkbox"]:not(#cookielawinfo-checkbox-necessary){
    cursor: pointer;
}
input[type="checkbox"]:after {
    font-family: "Font Awesome 5 Free";
    content: "\2713";
    font-weight: 600;
    font-size: 15px;
    display: none;
    text-align: center;
    vertical-align: middle;
    transition: all 0.3s ease;
}
input[type="checkbox"]:checked {
    background-color: transparent;
}
input[type="checkbox"]:focus {
    outline: none;
}
input[type="checkbox"]:checked:after {
    display: block;
    color: white;
}
.checkBoxContainer label:not(label[for="cookielawinfo-checkbox-necessary"]) {
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.checkBoxContainer label[for="cookielawinfo-checkbox-necessary"], input#cookielawinfo-checkbox-necessary:after {
    opacity: 0.5;
}
.textLineThrough {
    text-decoration: line-through!important;
    opacity: .5;
}
#cookieContent {
    display: block;
}
#cookiePolicies {
    display: none;
}
#cookiePolicyButton:hover {
    cursor: pointer;
    text-decoration: underline;
}
#closeCookiePolicy {
    font-size: 2rem;
}
#closeCookiePolicy:hover {
    cursor: pointer;
}