/**
 * Status indicators
 */
/*
.jwOptinStateIndicator {
    display: none;
    font-weight: bold;
}

.jwOptinStateIndicator.active {
    display: block;
}

.jwOptinStateUnclear {
    display: block;
}

.jwOptinStateDenied {
    color: red;
}

.jwOptinStateAccepted {
    color: green;
}
*/

/**
 * Checkboxes
 */
.jwOptin-checkbox-container {
    padding: 0 0 20px 0;
}

.jwOptinCheckboxLabel {
    padding: 0px 0px 5px 0px;
    cursor: pointer;
    display: inline; /* vorher block=Zeilenumbruch nach jeder Zeile */
}

.jwOptinCheckbox {

}

/**
 * Checkboxes Tooltips
 */
[data-title]:hover:after {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
}

[data-title]:after {
    content: attr(data-title);
    background-color: #f6f9ff;
    color: #353535;
    font-size: 90%;
    font-weight: normal;
    position: absolute;
    padding: 4px 5px 4px 5px;
    bottom: -25px;
    width: 300px;
    left: 12px;
    box-shadow: 2px 2px 3px rgba(222, 222, 222, 0.5);
    opacity: 0;
    border: 1px solid #eee;
    z-index: 99999;
    visibility: hidden;
}

[data-title] {
    position: relative;
}


/**
 * External Media / YouTube
 */
iframe[data-optin-type="xmy"] {
    display: none;
}

.jwOptinPlaceholderXmy {
    background-color: #eee;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M1 3.54l1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l2 2 1.26-1.27L2.27 2.27 1 3.54zM3 19V7h1.46l12 12H3zM21 5h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H7.52l2 2H21v11.48l1.65 1.65c.22-.32.35-.71.35-1.13V7c0-1.11-.89-2-2-2z"/></svg>');
    background-size: 25% 25%;
    background-position: center center;
    background-repeat: no-repeat;
    border: 1px solid #ddd;
    padding: 20px;
    width: 560px;
    height: 315px;
    text-align: center;
}


.jwCOWidget {
    display: none;
    background-color: #fff;
    border: 1px solid #ddd;
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    z-index: 99999;
    font-size: 14px;
}

.jwCOWidgetShowFull {
    display: block;
    min-height: 80px;
    padding: 20px 40px;
    box-shadow: 0px -8px 24px 8px rgba(0, 0, 0, .33);
}

.jwCOWidgetShowSticker {
  display: block;
  bottom: 0px;
  right: 15px;
  left: unset;
  width: 175px;
  height: 27px;
  text-align: center;
  cursor: pointer;
  background-color: #007d40; /* #22A0D9; Farbe Sticker */
  color: #fff;
}

.jwCOWidget.jwCOWidgetShowFull > .stickerHandle {
    display: none;
}

.jwCOWidget.jwCOWidgetShowSticker > .optinHandle {
    display: none;
}


.jwCOWidget > .optinHandle {
    padding: 10px 20px 10px 20px;
    min-height: 200px;
}

.jwCOWidget > .optinHandle .closeHandle {
    font-size: 20px;
    font-weight: normal;
    line-height: 20px;
    color: #ddd;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    cursor: pointer;
    padding: 10px;
    border-radius: 40px;
}

.jwCOWidget > .optinHandle .title {
    font-size: 18px;
    font-weight: normal;
    color: #007d40; /* #00377a Titel über Text */
}

.jwCOWidget > .optinHandle .description {
    margin: 0px 0px 20px 0px;
}

.jwCOWidget > .optinHandle .optionChannels {
    margin: 0px 0px 20px 0px;
}

.jwCOWidget > .optinHandle .optionChannels .optionCaption {
    display: inline;
    padding: 0px 10px 0px 0px;
    font-size: 14px;
    font-weight: bold;
    color: #007d40; /* #00377a Titel über Auswahl */
}

.jwCOWidget > .optinHandle .optionChannels .jwOptin-checkbox-container {
    display: inline;
}

.jwCOWidget > .optinHandle .optionChannels label {
    margin: 0px 10px 4px 0px;
}

.jwCOWidget > .optinHandle .btns {
    margin: 0px 0px 30px 0px;
}

.jwCOWidget > .optinHandle .btns .jwCOBtn {
    padding: 8px 24px;
    margin-right: 10px;
    border: 1px solid #CACACA;
    border-radius: 0px;
    text-align: center;
    vertical-align: middle;
    background-color: #CACACA;
    font-weight: 400;
    font-size: 16px;
    color: #212529;
}

.jwCOWidget > .optinHandle .btns .jwOptinBtnAcceptAll {
    color: #fff;
    background-color: #007d40; /* #0da610 Button Farbe */
    border: 1px solid #007d40; /* #0da610 Button Farbe */
}

.jwCOWidget > .optinHandle .btns .jwOptinBtnAccept {
    color: #007d40; /* #0da610 Button Farbe */
    background-color: #fff;
    border: 1px solid #007d40; /* #0da610 Button Farbe */
}

.jwCOWidget > .optinHandle .btns .jwOptinBtnDeny {
    color: #ccc;
    background-color: #fff;
    float: right !important;
    border: 0px !important;
}

.jwCOWidget > .optinHandle .legalLinks {
    margin: 0px 0px 10px 0px;
}

.jwCOWidget > .optinHandle .legalLinks a {
    display: inline-block;
    margin: 0px 5px;
    font-size: 12px;
}

@media screen and (max-width: 500px) {
    .jwCOWidget {
        max-height: 80%;
        overflow: auto;
    }

    .jwCOWidget > .optinHandle .optionChannels .optionCaption {
        display: block;
    }

    .jwCOWidget > .optinHandle .optionChannels {
        margin: 0px 0px 0px 0px;
    }

    .jwCOWidget > .optinHandle .optionChannels label {
        margin: 0px 10px 10px 0px;
        display: block;
    }

    .jwCOWidget > .optinHandle .btns .jwCOBtn {
        margin: 8px 0px 8px 0px !important;
        width: 100%;
    }

    .jwCOWidget > .optinHandle .legalLinks {
        text-align: center;
    }
}

/*# sourceMappingURL=jw-tracker-optin.all.css.map */