#cookienote {
    z-index:100;
    background: rgba(248,248,248,.95) !important;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.cookienote-content {
    padding-top:30px;
    padding-bottom:30px;
    padding: 30px 15px 30px 15px;
    text-transform: none;
    display: flex;
}

.cookienote-content .dd-ve-container {
    margin-top:0;
}

#extCookieNoteText {
    text-transform: none;
}

#extCookieControlls {
    display: grid;
    grid-template-columns: 240px auto;
    padding: 0 15px;
}

#extCookieButtons {
    padding-top: 7px;
}

#extCookieNoteText {
    width: 100%;
}

.ewcookienoteext-setting-info {
    margin-top: -30px;
    margin-bottom: 30px;
    opacity:1;
    transition: opacity .2s ease;
}

.ewcookienoteext-setting-inactive {
    opacity: .5;
}

#cookienote a, #cookienote .btn.btn-link {
    /*color: #fff; */
    font-weight:bold;
    /*font-style:italic;*/
}

.ewcookienoteext-setting-checkbox {
    display: block;
    margin: 0;
    font-size: 14px;
    cursor: pointer;
}

.ewcookienoteext-setting-checkbox input[type="checkbox"] {
    display:none;
}

.ewcookienoteext-setting-switch {
    height: 28px;
    width: 52px;
    border: 1px solid #ce6a6c;
    background: #f8f8f8;
    border-radius: 48px;
    position: relative;
    display: inline-block;
    position: relative;
    top: 8px;
    margin-right: 7px;
}
.ewcookienoteext-setting-switch:before {
    content: '';
    width: 24px;
    height: 24px;
    background: #ce6a6c;
    border-radius: 40px;
    position: absolute;
    top: 1px;
    left: 1px;
    transition: all 0.2s ease-out;
}
input + .ewcookienoteext-setting-switch {
    cursor: pointer;
}
input:checked + .ewcookienoteext-setting-switch {
    background: #ce6a6c;
}
input:checked + .ewcookienoteext-setting-switch:before {
    background: #fff;
    -webkit-transform: translateX(24px);
    transform: translateX(24px);
}
input:disabled + .ewcookienoteext-setting-switch {
    cursor: not-allowed;
}
input:disabled + .ewcookienoteext-setting-switch:before {
    content: "\f023";
    color: #ce6a6c;
    text-align: center;
    font-size: 15px;
    padding-top: 5px;
}

@media (max-width:991px) {
    .cookienote-content {
        display: block;
    }

    .ewcookienoteext-note-description {
        margin-bottom:20px;
    }

    #extCookieNoteText, .ewcookienoteext-setting-info {
        font-size: 14px;
    }
}