#cookiesConsentView {
    position: fixed;
    margin: 0 auto;
    bottom: 0;
    width: 99%;
    padding: 10px 0;
    background: rgba(0, 0, 0, .04);
    color: white;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    font-family: "SF Pro Text", "Myriad Set Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "SF Pro Icons", "Apple Legacy Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    line-height: 1.3333733333;
    font-weight: 400;
    letter-spacing: -0.01em;
    z-index:1000;
}

#cookiesConsentView a {
    text-decoration: underline;
    color:inherit;
}

#cookiesConsentView a:hover {
    color:#474747;
}

#cookiesConsentViewLeft {

    padding: 0px 20px;
    width: 70%;
    box-sizing: border-box;
    font-size: 12px;
    display: inline-block;
    word-break: initial;
    color: rgba(0, 0, 0, .8);
    text-align: left;
}

#cookiesConsentViewRight {
    width: 30%;
    padding: 0px 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

#cookiesConsentViewRightTop {
    margin-bottom: 5px;
}

#cookiesConsentViewRightBottom {
    margin-top: 5px;
}

#cookiesConsentViewRightTop,
#cookiesConsentViewRightBottom {
    color: rgba(240, 240, 240, 0.8);
    border-radius: 7px;
    font-size: 14px;
    padding: 5px 5px;
    text-align: center;
    box-sizing: border-box;
    background: #000;
    width: 100%;
}

#cookiesConsentViewRightTop:hover,
#cookiesConsentViewRightBottom:hover {
    color: #fff;
    cursor: pointer;
    transform: scale(1.005);
    background: #1a1a1a;
}