/* reset */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* cookie box */
.box-cookie-outer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 500px;
    max-width: 100%;
    z-index: 999999999999999999;
}
.box-cookie {
    position: relative;
    padding: 10px 20px;
    background-color: #FFF;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
    cursor: default;
    font-size: 14px;
    line-height: 18px;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
    overflow: hidden;
}

.box-cookie-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 53px;
    color: #dba75b;
    opacity: 0.9;
}

.box-cookie-title {
    padding-left: 30px;
    position: relative;
}

.box-cookie-description {
    position: relative;
    padding: 0 10px;
    height: 30vh;
    overflow: auto;
}

.box-cookie-description .cookie-banner-headline {
    display: block;
    margin-bottom: 10px;
    font-size: 1.5em;
    font-weight: bold;
}

.box-cookie-description .entry {
    margin-bottom: 1em;
}

.box-cookie-description .entry + .cookie-banner-headline {
    margin-top: 20px;
}

.box-cookie strong {
    margin-bottom: 5px;
    display: block;
    font-size: 16px;
}
.box-cookie-action {
    padding: 10px 0;
}
.box-cookie-action:after {
    content: "";
    clear: both;
    display: block;
}
.box-cookie-action #acceptCookies,
.box-cookie-action #acceptSelectedCookies,
.box-cookie-action #internalCookies {
    display: block;
    margin-top: 5px;
    background-color: green;
    color: #FAFAFA;
}

.box-cookie-action #internalCookies {
    margin-top: 0.5px;
}

.box-cookie-action button {
    display: inline-block;
    *display:inline;
    padding: 10px 15px;
    float: none;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.4s;
}

.box-cookie-action button:hover,
.box-cookie-action button:focus {
    opacity: 1;
}

/* cookie checkbox switch */
.box-cookie-description .entry:after {
    content: "";
    clear: both;
    display: block;
}
.box-cookie-description .left {
    float: left;
    padding-right: 10px;
    width: calc(100% - 60px);
}
.box-cookie-description .right {
    float: right;
    width: 60px;
}
.box-cookie-description .switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 18px;
}

/* Hide default HTML checkbox */
.box-cookie-description .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.box-cookie-description .entry {
    padding: 10px;
    background-color: #fafafa;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.box-cookie-description .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.box-cookie-description .slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.box-cookie-description input:checked + .slider {
    background-color: #2196F3;
}

.box-cookie-description input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

.box-cookie-description input:checked + .slider:before {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
}

/* Rounded sliders */
.box-cookie-description .slider.round {
    border-radius: 34px;
}

.box-cookie-description .slider.round:before {
    border-radius: 50%;
}
