.sd-vue-component-gdpr-cookie-notice {
    /*padding: 10px;*/
    /*border: 1px solid #DDDDDD;*/
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

.sd-vue-component-gdpr-cookie-notice-text {
    width: 235px;
    float: left;
    line-height: 34px;
}

.sd-vue-component-gdpr-cookie-notice-switch-container {
    width: 65px;
    float: left;
}

.sd-vue-component-gdpr-cookie-notice-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
    margin: 0;
}

.sd-vue-component-gdpr-cookie-notice-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sd-vue-component-gdpr-cookie-notice-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.sd-vue-component-gdpr-cookie-notice-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.sd-vue-component-gdpr-cookie-notice input:checked + .sd-vue-component-gdpr-cookie-notice-slider {
    background-color: #6a46ca;
}

.sd-vue-component-gdpr-cookie-notice input:focus + .sd-vue-component-gdpr-cookie-notice-slider {
    box-shadow: 0 0 1px #6a46ca;
}

.sd-vue-component-gdpr-cookie-notice input:checked + .sd-vue-component-gdpr-cookie-notice-slider:before {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
}

.sd-vue-component-gdpr-cookie-notice-slider.round {
    border-radius: 28px;
}

.sd-vue-component-gdpr-cookie-notice-slider.round:before {
    border-radius: 50%;
}

@media screen and (max-width: 360px) {
    .sd-vue-component-gdpr-cookie-notice {
        width: 100%;
    }

    .sd-vue-component-gdpr-cookie-notice-text {
        width: 100%;
        float: none;
        text-align: center;
    }

    .sd-vue-component-gdpr-cookie-notice-switch-container {
        width: 100%;
        float: none;
        text-align: center;
    }
}