/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/* buttons --------------------------------------------------- */
.dpgdpr_button {
    font-size: 12px;
    font-weight: normal;
    color: white;
    background: #4DBBB0;
    padding: 5px 12px;
}

/* checkboxes --------------------------------------------------- */
.dpgdpr_checkbox,
.dpgdpr_checkbox label {
    height: 24px;
    position: relative;
}

.dpgdpr_checkbox label {
    margin: 0;
}

.dpgdpr_checkbox label {
    font-size: 13px;
    cursor: pointer;
    user-select: none;
    color: #636363;
    font-weight: 400;
    padding-left: 34px;
    white-space: nowrap;
}

.dpgdpr_checkbox label:before,
.dpgdpr_checkbox label:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 40px;
    height: 24px;
    border-radius: 16px;
    background: #fff !important;
    border: 1px solid #d9d9d9 !important;
    transition: all .3s;
    opacity: 1 !important;
}

.dpgdpr_checkbox input {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0!important;
    outline: 0;
    z-index: 3;
    margin: 0;
    padding: 0!important;
    pointer-events: none;
}

.dpgdpr_checkbox input + label:before {
    background: #a72c28!important;
}

.dpgdpr_checkbox input:checked + label:before {
    background: #55d069 !important;
}

.dpgdpr_checkbox input + label:after {
    width: 24px;
    height: 24px;
    border-radius: 16px;
}

.dpgdpr_checkbox input:checked + label:after {
    margin-left: 16px;
}

.dpgdpr_checkbox input + label {
    width: 40px;
    display: inline-block;
}

/* buttons --------------------------------------------------- */
.dpgdpr_button,
.dpgdpr_button:hover,
.dpgdpr_button:active,
.dpgdpr_button:focus {
    color: white;
    background: #4DBBB0;
}

/* popup --------------------------------------------------- */
.dpgdpr_popup {
    display: block;
    background: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999999;
    padding: 18px 22px;
    width: 211px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.13);
    border-radius: 2px;
    overflow: hidden;
}

.dpgdpr_popup__cross {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    font-family: sans-serif;
    width: 20px;
    text-align: center;
    padding: 0;
    border: 0;
    font-weight: normal;
}

.dpgdpr_popup__cross,
.dpgdpr_popup__cross:hover,
.dpgdpr_popup__cross:active,
.dpgdpr_popup__cross:focus {
    background: transparent;
    color: #979797;
    box-shadow: none;
}

.dpgdpr_popup__text {
    font-size: 12px;
    margin-bottom: 0px;
}

.dpgdpr_popup__more-info {
    font-size: 12px;
    text-decoration: underline;
    margin-bottom: 12px;
    display: inline-block;
}

/* popup inactive --------------------------------------------------- */
.dpgdpr_popup {
    transition: 0.3s ease all;
    transform: translateY(20%);
    opacity: 0;
}

.dpgdpr_popup.is-active {
    transform: translateY(0);
    opacity: 1;
}

/* checkbox form --------------------------------------------------- */
.dpgdpr_privacy-checkbox {
    display: block;
}

.dpgdpr_privacy-checkbox__inner {
    font-size: 0;
    background: #F2F2F2;
    border-radius: 6px;
    padding: 27px;
    display: inline-block;
}

.dpgdpr_privacy-checkbox__inner > * {
    display: inline-block;
    vertical-align: middle;
}

.dpgdpr_privacy-checkbox__label {
    font-size: 16px;
    font-weight: normal;
    margin: 0 40px 0 0;
}