/***** Cookie-Banner - Start *****/
.msg-cookies {
    position: fixed;
    bottom: -600px;
    left: 0;
    width: 400px;
    margin: 0 15px;
    padding: 30px;
    font-size: 18px;
    color: #fff;
    background-color: #333;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.1);
    transition: all 0.32s ease-in-out;
    z-index: 1000;
}
.msg-cookies p {
    font-size: 15px;
    color: #fff;
    line-height: 1.25;
    margin: 0;
}
.msg-cookies p a {
    color: #fff;
    text-decoration: underline;
}
.msg-cookies p a:hover {
    text-decoration: none;
}
.msg-cookies.show {
    bottom: 15px;
    opacity: 1;
    transform: scale(1);
}

.msg-cookies h2 {
    margin: 0 0 20px;
    font-family: Veneer;
    font-size: 30px;
    font-weight: 400;
    color: #00b9e4;
}

.msg-cookies dl {
    overflow: hidden;
}

.msg-cookies dt {
    float: left;
    clear: both;
    width: 70%;
    font-weight: 400;
}
.msg-cookies dd {
    float: left;
    width: 30%;
    text-align: right;
}

.msg-cookies .cc-toggle {
    display: inline-block;
    margin: 0 0 8px;
    cursor: pointer;
}
.msg-cookies .cc-toggle input {
    opacity: 0;
    position: absolute;
}
.msg-cookies .cc-toggle input + label {
    margin: 0;
    width: 50px;
    border: none;
    height: 24px;
    display: block;
    user-select: none;
    position: relative;
    border-radius: 60px;
    transition: 0.4s ease;
}
.msg-cookies .cc-toggle input + label::before {
    top: 0;
    left: 0;
    width: 48px;
    content: "";
    height: 24px;
    display: block;
    position: absolute;
    border-radius: 30px;
    background: #999;
    cursor: pointer;
    transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
}
.msg-cookies .cc-toggle input:checked + label::before {
    background: #00b9e4;
    transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
}
.msg-cookies .cc-toggle input + label::after {
    top: 2px;
    left: 2px;
    width: 20px;
    content: "";
    height: 20px;
    display: block;
    position: absolute;
    border-radius: 60px;
    background: #fff;
    cursor: pointer;
    transition: 0.35s cubic-bezier(0.54, 1.3, 0.5, 1);
}
.msg-cookies .cc-toggle input:checked + label::after {
    left: 26px;
}

.msg-cookies a.fta-btn {
    float: left;
    display: inline-block;
    margin: 20px 10px 0 0;
    padding: 15px;
    font-family: Veneer;
    font-size: 22px;
    color: #333;
    text-decoration: none;
    background-color: #00b9e4;
    cursor: pointer;
}
.actions {
    margin-top: 30px;
}
#cookies-accept-all {
    float: right;
    background-color: #bed600;
    margin-right: 0;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 20px;
    font-family: Veneer;
}
#cookies-save {
    float: left;
    background-color: #fff;
    margin-left:0;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 20px;
    font-family: Veneer;
}

.msg-cookies a:hover {
    text-decoration: none;
}
.msg-cookies a.seen {
    font-family: 'Veneer', Arial, sans-serif;
    font-size: 24px;
    display: inline-block;
    padding: 10px 40px;
    line-height: 32px;
    color: #fff;
    text-decoration: none;
    background-color: #e0083a;
    cursor: pointer;
}
.msg-cookies a.seen:hover {
    color: #000;
}

.show-cookie-settings {
    cursor: pointer;
}
/***** Cookie-Banner - End *****/

/***** Cookie-Banner mobile - Start *****/
@media (max-width: 374px) {

    .msg-cookies {
        margin: 0;
    }

}
@media (max-width: 430px) {

    .msg-cookies {
        width: auto;
        padding: 15px;
    }

}
@media (max-width: 1400px) {

    .msg-cookies.show {
        bottom: 115px;
    }

}
/***** Cookie-Banner mobile - End *****/