.cookie-dialog {
    z-index: 999;
    display: none;
    position: fixed;
    background-color: #f1f2f4;
    border-radius: 20px;
    font-family: Open Sans;
    border: 1px solid white;
    height: fit-content;
    bottom: 140px;
    right: 10px;
    left: 10px;
}

.cookie-dialog .cookie-dialog-inner {
    padding: 10px;
    text-align: left;
}

.cookie-dialog .cookie-dialog-inner .controls {
    padding-top: 5px;
    text-align: right;
}

.cookie-dialog .cookie-dialog-inner .controls .btn {
    text-transform: none;
    font-size: 0.8em!important;
    padding: 0.3em 1.5em!important;
}

@media screen and (min-width: 768px) {
    .cookie-dialog {
        left: unset;
        right: 20px;
        left: 20px;
    }
}

@media screen and (min-width: 1200px) {
    .cookie-dialog {
        bottom: 40px;
        left: unset;
        right: 140px;
        width: 66%;
    }
}

@media screen and (min-width: 1500px) {
    .cookie-dialog {
        right: 180px;
        width: 50%;
    }
}

