#cconsent-bar {
    --boxShadow: -5px 5px 10px 0px #00000012, 0px 0px 50px 0px #0000001a;
    --fontFamily: Helvetica Neue, Segoe UI, Arial, sans-serif;
    --primaryColor: #F9D000;
    --backgroundColor: #050505;
    --textColor: #F4F0DF;
    --backdropBackgroundColor: #00000077;
    --backdropBackgroundBlur: 0px;
    --iconColor: #050505;
    --iconBackgroundColor: #F9D000;
    background-color: transparent !important;
    /* position: fixed; */
    /* bottom: 0; */
    right: 0;
    /* width: 100%; */
    height: 100%;
    /* z-index: 99999; */
    pointer-events: none;
    border: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cconsent-bar .ccb__wrapper{
    /* font-family: var(--fontFamily); */
    /* color: var(--textColor); */
    background-color: var(--backgroundColor);
    box-sizing: border-box;
    padding: 32px;
    pointer-events: auto;
    border: 0px;

    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    position: fixed;
    width: 600px;
    overflow: auto;
    max-width: calc(100% - 32px);
    max-height: calc(100vh - 32px);
    transform: translate(0, -20px);
    opacity: 0;
    opacity: 1;
    transform: translate(-50%, calc(-50% - 20px));
    /* animation: stcm-slide-down-center 350ms ease-out forwards;
    animation: stcm-slide-down 350ms ease-out; */
    animation-delay: 0.3s;
    box-shadow: -5px 5px 10px 0px #00000012, 0px 0px 50px 0px #0000001a;
}

