﻿/*Styles for cookie consent banner starts */
/*Main container (outer most div) */
.cookieConsentBannerMain {
    position: fixed;
    z-index: 2147483645;
    box-sizing: border-box;
    background-color: #F2F2F2; /*Banner backgound color*/
    border-radius: 20px;
    width: 100%;
    padding: 2px 2px 2px 5px;
    bottom: 0;
    left: 0;
}

/*Text Container (first div inside the main div) */
.cookieConsentTextContainer {
    padding: 2px;
}

/*Banner header (first div inside text container) */
.cookieConsentBannerHeader {
    font-family: "CeraPRO-Bold", sans-serif, arial;
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
    color: #262626; /*Header text color*/
    padding: 2px;
    margin-bottom: 2px;
    text-align: left !important;
}

/*Banner description (second div inside text container) */
.cookieConsentBannerDescription {
    font-family: "CeraPRO-Regular", sans-serif, arial;
    font-weight: normal;
    color: #262626; /*Description text color*/
    font-size: 13px;
    line-height: 18px;
    padding: 2px;
    text-align: left !important;
}

/*Button container (second div inside main div) */
.cookieConsentButtonContainer {
    text-align: right;
    margin-bottom: 2px;
    padding-right: 8px;
}

    /*Buttons (inside button container) */
    .cookieConsentButtonContainer button {
        min-width: 80px;
        align-items: center;
        padding: 6px 10px;
        font-family: "CeraPRO-Regular", sans-serif, arial;
        border-radius: 6px;
        border: none;
        background-color: #5685FF; /*Buttons backgound color*/
        color: #F9F9F9; /*Buttons text color*/
        cursor: pointer;
        margin: 0px 6px 0px 6px;
    }

/*Cookie notice*/
.cookieConsentBannerDescription a {
    color: blue;
    padding-left: 5px;
}

    .cookieConsentBannerDescription a:hover, a:focus, a:active {
        color: #c33;
    }
/*Styles for cookie consent banner ends */
