.cookie-dialog {
    padding: 2em 1.8em;
    max-width: 24em;
    color: rgb(255, 255, 255);
    background-color: rgb(42, 52, 130);
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: initial;
    opacity: 0;
    border-radius: 0px;
    font-size: 16px;
    bottom: 1em;
    left: 1em;
    position: fixed;
    box-sizing: border-box;
    font-family: Helvetica,Calibri,Arial,sans-serif;
    line-height: 1em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: wrap;
    flex-flow: row wrap;
    z-index: 3001;
    transition: opacity 1s ease;
}
.cookie-dialog p {
    margin: 0 0 40px 0
}
.cookie-dialog .tooltip-inner {
    max-width: 500px;
    width:500px;
}

.cookie-dialog .cookie-header {
    font-size: 18px;
    font-weight: 700;
    max-width: 256px;
    margin-top: 2px;
}

.cookie-dialog .cookie-message {
    margin: 0 0 1em;
    display: block;
}

.cookie-dialog .cookie-text {
    margin-right: 5px;
}

.cookie-dialog .cookie-compliance {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    flex-wrap: wrap;
}

.cookie-dialog .cookie-button {
    margin-right: 0.5em;
    margin-top: 0.2em;
    color: rgb(0, 0, 0);
    border-color: rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
    -ms-flex: 1;
    flex: 1 1 auto;
    display: block;
    padding: 0.4em 0.8em;
    font-size: .9em;
    font-weight: 700;
    border-width: 2px;
    border-style: solid;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}
.cookie-dialog .cookie-all {
    color: rgb(255, 255, 255);
    background-color:rgb(52, 52, 52);
}

.cookie-dialog .cookie-button:hover {
    text-decoration: underline;
}

.cookie-dialog .cookie-options {
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
}

.cookie-dialog .cookie-options>div {
    display: flex;
}

.cookie-dialog .cookie-options>div>label {
    flex: 1;
    font-weight: 400;
}

.cookie-dialog .cookie-options>div>label:nth-of-type(2) {
    border-left: 1px solid white;
    text-align:right;
}

.cookie-dialog .cookie-close {
    color: transparent;
    text-shadow: rgb(255 255 255) 0px 0px 0px;
    display: block;
    position: absolute;
    top: 0.5em;
    right: 0.3em;
    font-size: 1.6em;
    opacity: .9;
    line-height: .75;
    outline: none;
    cursor: pointer;
}