.white-popup {
    position: relative;
    background: #FFF;
    padding: 20px;
    width: auto;
    max-width: 100%;
    width:600px;
    margin: 20px auto;
}

    .white-popup * {
        font-size: 1.5rem;
    }

    .white-popup a {
        text-decoration: underline;
    }

    .white-popup button {
        background: #124734;
        line-height: 3rem;
        padding-left: 10px;
        padding-right: 10px;
        color: #fff;
        border: none;
        display: inline-block;
        height: 3rem;
    }

.custom-cookie-settings {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 40px;
    left: 40px;
    background-color: #000000;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    z-index: 10;
}

    .custom-cookie-settings:hover{
        background:#124734;
    }

    .custom-cookie-settings a:before {
        content: "";
        display: block;
        background-image: url(/css/bg/cookie.svg);
        width: 28px;
        height: 28px;
        background-repeat: no-repeat;
        position: relative;
        left: 8px;
        top: 8px;
        z-index: 2;
    }

    .custom-cookie-settings a:after {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        width: calc(100% + 2px);
        height: calc(100% + 2px);
        background-color: #005444;
        border-radius: 100%;
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        clip-path: circle(25% at 75% 25%);
        -webkit-clip-path: circle(25% at 75% 25%);
        -webkit-transition: opacity .2s ease .2s,visibility .2s ease .2s,-webkit-clip-path .4s cubic-bezier(.61,.04,0,.98);
        transition: opacity .2s ease .2s,visibility .2s ease .2s,-webkit-clip-path .4s cubic-bezier(.61,.04,0,.98);
        -o-transition: clip-path .4s cubic-bezier(.61,.04,0,.98),opacity .2s ease .2s,visibility .2s ease .2s;
        transition: clip-path .4s cubic-bezier(.61,.04,0,.98),opacity .2s ease .2s,visibility .2s ease .2s;
        transition: clip-path .4s cubic-bezier(.61,.04,0,.98),opacity .2s ease .2s,visibility .2s ease .2s,-webkit-clip-path .4s cubic-bezier(.61,.04,0,.98);
    }


.accordion-element {
    margin-bottom: 15px;
    cursor:pointer;
    float:left;
    width:100%;
}

.accordion-left {
    float: left;
}

.accordion-right {
    float: right;
}

    .accordion-right .enabled {
        font-size: 14px;
        line-height: 3.5rem;
    }

.accordion-left {
    font-size: 14px;
}

.rule-arrow {
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    float: left;
    margin-right: 10px;
    margin-top: 13px;
}

.active .rule-arrow {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-top:10px;
}

.accordion-more{
    padding-top:10px;
    padding-bottom:10px;
    display:none;
    font-size:1.4rem;
    font-weight:600;
    float:left;
    width:100%;
}

.accordion-more a{
    font-size:1.4rem;
}

.accordion-header {
    position: relative;
    background: #f2f2f2;
    border-radius: 4px;
    min-height: 3.5rem;
    width:100%;
    line-height: 3.5rem;
    padding-left: 15px;
    padding-right: 15px;
    float:left;
}
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 53px;
    height: 27px;
    margin-bottom:0;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    height: 26px;
    margin-top: 5px;
    padding:0;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 19px;
        width: 19px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #61a229;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }
