body.ccc-open-overflow {
    overflow: hidden;
}

#ccc {
    position: fixed;
    z-index: 6;
    font-size: 12px;
    line-height: 1.4em;
    font-smooth: antialised;
    -webkit-font-smoothing: antialiased;
}
#ccc h2 {
    font-size: 21px;
    color: rgb(0, 0, 0);
    line-height: 1.2;
    margin:0;
}

#ccc h3 {
    font-size: 17px;
    color: rgb(32, 33, 36);
    font-weight: bold;
    line-height: 1.2;
    margin: 20px 0;
}

h3.optional-cookie-header {
    padding-right: 115px;
}

#ccc p , #ccc a {
    font-size: 14px;
    color: rgb(32, 33, 36);
    line-height: 1.5;
}

#ccc a {
 text-decoration: underline;
}
.optional-cookie-links li{
    display: inline-block;
}

.optional-cookie-links li:not(:first-of-type):before {
    content: "/";
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: #6c757d;
}

#ccc hr {
    margin: 20px 0 25px 0;
}

#ccc-content {
    width: 100%;
    position: absolute;
    overflow-y: auto;
    padding: 24px;
    box-sizing: border-box;
}

#ccc-close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 24px;
    cursor: pointer;
}

#ccc.open #ccc-overlay {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
}

#ccc-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .4);
    -moz-transform:translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    opacity: 0;
    transition: transform 0s, opacity .4s, -webkit-transform 0s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

#ccc-icon {
    position: fixed;
    bottom: 0;
    width: 0;
    height: 80px;
    cursor: pointer;
    z-index: 4;
}

#ccc .triangle {
    width: 135px;
    height: 85px;
    background-color: #8c8c8c;
    transform: rotate(45deg);
    -moz-transform:rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    left: -67px;
    position: relative;
    top: 22px;
}
#ccc .triangle img {
    position: absolute;
    left: 48%;
    transform: rotate(-45deg);
    -moz-transform:rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    top: 10%;
}

#ccc-module {
    background-color: #ffffff;
    position: fixed;
    height: 100%;
    z-index: 2;
    transition: -webkit-transform .6s;
    transition: transform .6s;
    -moz-transition:transform .6s;
    -o-transition: transform .6s;
    -webkit-transition: transform .6s;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    width: 100%;
    max-width: 420px;
    overflow-y: auto;
}

#ccc.open #ccc-module {
    -moz-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    right: 100%;
}

#ccc.closed #ccc-module {
    left: auto;
    right: 100%;
    -moz-transform: translateZ(0);
    -o-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

#ccc-notify {
    display: none;
}

#ccc .checkbox-toggle-off, #ccc .checkbox-toggle-on {
    flex: 1;
    flex-basis: 50%;
    width: 50%;
    min-width: 40px;
    text-align: center;
    z-index: 2;
    font-size: .75em;
    font-weight: 700;
    padding: 0 6px;
    white-space: nowrap;
    display: initial;
    line-height: 20px;
}

#ccc .checkbox-toggle-toggle {
    display: block;
    width: 50%;
    height: 100%;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    border-radius: 50px;
    transition: all .4s ease;
    background-color: #3b3c3e;
}

#ccc .checkbox-toggle input:not(:checked)~.checkbox-toggle-toggle {
    left: 0;
    background-color: #c7c7c7 !important;
}

#ccc .checkbox-toggle input:checked~.checkbox-toggle-toggle {
    left: 50%;
}
#ccc .ccc-toggle-not-active {

}

#ccc .checkbox-toggle {
    position: absolute;
    top: -3px;
    right: 0;
    margin: 0;
    border-radius: 50px;
    border: 4px solid #e9e9e9;
    background-color: #e9e9e9;
}

#ccc .optional-cookie {
    position: relative;
}
#ccc .optional-cookie:last-of-type {
    margin-bottom: 50px;
}

#ccc .checkbox-toggle-label {
    margin: 0;
    cursor: pointer;
    z-index: 1;
}

#ccc .checkbox-toggle-input {
    margin: 0;
    padding: 0;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}


a#ccc-policy {
    font-size: 14px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: 1.5;
    border: none;
    border-radius: 5px;
    background-color: #3b3c3e;
    padding: 10px 30px;
    text-decoration: none;
}

.buttons-wrap {
    display: flex;
}

.buttons-wrap .btn {
    padding: 10px;
    font-size: 12px !important;
}

@media(max-width: 579px) {
    #ccc-module {
        max-width: 100%;
    }

    #ccc .triangle {
        width: 105px;
        height: 82px;
        left: -60px;
        top: 31px;
    }
    #ccc .triangle img {
        left: 48%;
        top: 6%;
    }

    .buttons-wrap {
        flex-direction: column;
    }

    .buttons-wrap .btn {
        width: 100%;
        margin-right: 0;
    }
}

@media(min-width: 579px) {
    .buttons-wrap .btn {
        width: 50% !important;
    }
}