.CMBanner {
    display: none;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255,255,255,0.95);
    color: black;
    padding: 4rem;
    text-align: center;
    z-index: 999999999;
}
.CMButtons {
    border: none !important;
    background: rgb(25, 103, 210) !important;
    color: #fff !important;
    border-radius: 2rem !important;
    font-weight: bold !important;
    cursor: pointer !important;
    justify-content: center !important;
    padding: .375em 1.75em !important;
    margin: 0 .375em !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-shadow: none !important;
    display: inline-flex;
    font-size: 1rem !important;
    height: 2.25em !important;
    line-height: 1.5 !important;
    position: relative !important;
    vertical-align: middle !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    align-items: center !important;
}
.CMButtonAccept {
    background: rgb(25, 103, 210) !important;
    color: #fff !important;
    margin-right: 0;
}
.CMButtonReject {
    background: #efefef !important;
    color: #666 !important;
    margin-left: 0;
}
.CMButtonChange {
    background: #efefef !important;
    color: #666 !important;
    text-align: center !important;
    font-weight: bold !important;
    z-index: 9999 !important;
    font-size: 0.85rem !important;
    margin: 0 auto !important;
}
.CMBanner .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}
.CMBanner .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.CMBanner .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.CMBanner .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
.CMBanner input:checked + .slider {
    background-color: #4CAF50;
}
.CMBanner input:disabled + .slider {
    background-color: #788178;
}
.CMBanner input:checked + .slider:before {
    transform: translateX(24px);
}
.CMPersonalize {
    padding: 2rem;
    display: none;
}
.CMOption {
    padding: 1rem;
    text-align: left;
}
.CMOptionDesc {
    padding: .5rem 0 1rem;
    font-style: italic;
    font-weight: 300;
    text-align: left;
    border-bottom: solid 1px #e3e3e3;
}
.CMNoscriptFrame {
    display: none;
    visibility: hidden;
}
.CMButtonRow {
    padding-top: 1rem;
}
.CMButtonAllow {
    display: none;
}
@media (max-width:1024px) {
    .CMBanner {
        padding: 4rem 2rem;
    }
}
@media (max-width:768px) {
    .CMBanner {
        padding: 3rem 1rem;
    }
}
