#consentDialog {
    z-index: 10;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    overflow: auto;
    -ms-flex-align: center;
        align-items: center;
    position: fixed;
    bottom: 0px;
    padding: 12px;
    border: 1px solid black;
    min-height: 50px;
    max-height: 100%;
    width: 100%;
    background-color: rgba(255,255,255,0.9);
    font-size: 16px;
    transition: all 0.3s;
    font-family: sans-serif;
}

#consentDialog.consent-dialog-details {
    bottom: calc(50% - 150px);
    left: calc(50% - 300px);
    max-width: 600px;
    background-color: #fff;
}

@media (max-height: 450px) {
    #consentDialog {
      height: 100%;
    }

    #consentDialog.consent-dialog-details {
        max-width: none;
        position: fixed;
        bottom: 0px;
        left: 0;
    }
}
@media (min-height: 451px) and (max-width: 640px) {
    #consentDialog.consent-dialog-details {
        max-width: none;
        position: fixed;
        bottom: 0px;
        left: 0;
    }
}

#consentDialog a {
    color: black;
}

#consentDialog button {
    margin: 15px 7px;
    padding: 6px 12px;
    line-height: 24px;
    border: medium none;
    outline: currentcolor none medium;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
    background-color: rgb(238, 238, 238);
    color: #000;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition-property: background-color, color, fill;
    transition-duration: 200ms, 200ms, 200ms;
    transition-timing-function: linear, linear, linear;
    width: 120px;
}

#consentDialog button:hover {
    color: rgb(238, 238, 238);
    background-color: #000;
}

#consentDialog button.consent-dialog-button-main {
    background-color: rgb(102, 204, 102);
    color: rgb(255, 255, 255);
    width: 210px;
}

#consentDialog button.consent-dialog-button-main:hover {
    color: rgb(102, 204, 102);
    background-color: rgb(255, 255, 255);
}

#consentDialog button.main {
    color: black;
}

#consentDialog button.consent-dialog-button-small {
    height: 22px;
    line-height: 12px;
    font-size: 12px;
    padding: 2px 4px;
    width: 85px;
}


#consentDialog div.consent-dialog-pixel-details {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
}

#consentDialog .consent-dialog-showco-icon {
    display: block;
    width: 24px;
    height: 24px;
    fill: #333;
    vertical-align: middle;
}

@media (max-height: 450px) {
    #consentDialog .consent-dialog-showco-icon {
        display: none;
    }
}

#consentDialog #toggles {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    max-width: 400px;
    max-height: 200px;
    padding: 10px;
    overflow-y: auto;
}

#consentDialog div.consent-dialog-pixel-details label.switch {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    width: 40px;
    height: 20px;
    background-color: #ccc;
    border-radius: 20px;
    transition: all 0.3s;
}

#consentDialog div.consent-dialog-pixel-details label.switch.checked {
    background-color: #6c6;
}

#consentDialog div.switch-button {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #fff;
    top: 1px;
    left: 1px;
    transition: all 0.3s;
}

#consentDialog div.switch-button.checked {
    left: 21px;
}

#consentDialog div.consent-dialog-column {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    max-width: 600px;
}

/*# sourceMappingURL=consent-screen.css-d81b2bb6.map*/