.cookies-msg {
        display: block;
        z-index: 1040;
        position: fixed;
        color: #DDD;
        background-color: rgba(0, 0, 0, 0.7);
        bottom: 0;
        left: 0;
        font-size: 14px;
        padding: 10px 10px 10px 10px;
        font-weight: bold;
        text-align: center;
        bottom: 0px;
        margin: 10px;
        border-radius: 10px;
        display: none;
    }

    .cookies-msg__bt {
        font-size: 16px;
        border: 0px;
        border-radius: 5px;
        padding: 5px 8px;
        margin: 4px;
    }

    .bt__green {
        color: #DDD;
        background-color: #029E00;
    }

    .bt__green:hover {
        color: #029e00;
        background-color: #DDD;
    }

    .bt__gray {
        color: #8b8b8b;
        background-color: #eee;
    }

    .bt__gray:hover {
        background-color: #DDD;
    }

    .mtext {
        font-size: 14px;
        text-align: justify;
        border-bottom: 1px solid #e5e5e5;
        padding: 0px 15px 15px 15px;
    }

.panel-heading {
	padding: 10px 15px !important;
}
/* plus glyph for showing collapsible panels */
.panel-heading .accordion-plus-toggle:before {
   font-family: FontAwesome;
   content: "\f068";
   float: right;
   color: silver;
}

.panel-heading .accordion-plus-toggle.collapsed:before {
   content: "\f067";
   color: silver;
}

/* arrow glyph for showing collapsible panels */
.panel-heading .accordion-arrow-toggle:before {
   font-family: FontAwesome;
   content: "\f078";
   float: right;
   color: silver;
}

.panel-heading .accordion-arrow-toggle.collapsed:before {
   content: "\f054";
   color: silver;
}

.panel-title {
	padding: 0px;
}
/* sets the link to the width of the entire panel title */
.panel-title > a {
   display: block;
}

/* pills */
.evogdpr_switch > input[type="checkbox"] {
    display: none;   
}

.evogdpr_switch > label {
    cursor: pointer;
    height: 0px;
    position: relative; 
    width: 40px;
    margin-right: 15px;
}

.evogdpr_switch > label::before {
    background: rgb(0, 0, 0);
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 9px;
    content: '';
    height: 20px;
    margin-top: -10px;
    position:absolute;
    opacity: 0.3;
    transition: all 0.4s ease-in-out;
    width: 40px;
}
.evogdpr_switch > label::after {
    background: rgb(255, 255, 255);
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    content: '';
    height: 18px;
    left: 1px;
    margin-top: -9px;
    position: absolute;
    top: 0px;
    transition: all 0.3s ease-in-out;
    width: 24px;
}
.evogdpr_switch > input[type="checkbox"]:checked + label::before {
    background: inherit;
    opacity: 0.5;
}
.evogdpr_switch > input[type="checkbox"]:checked + label::after {
    background: inherit;
    left: 15px;
}