﻿@media all and (min-width: 0px) {

    .cs-dialog--hide {
        display: none !important;
    }

    .cs-dialog input {
        width: 100%;
        box-sizing: border-box;
        padding: 8px;
        font-size: 16px;
    }

    .cs-dialog--breit {
        left: 30px;
        right: 30px;
    }

    .cs-dialog__container.cs-dialog-farbe-weiss {
        background-color: #fff;
    }

    .cs-dialog--schmal {
        width: 400px;
    }

    .cs-dialog {
        display: flex;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        align-items: center;
        justify-content: center;
        z-index: 300;
    }

    .cs-dialog__overlay {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0,0,0,0.4);
    }

    .cs-dialog__container {
        display: flex;
        flex-direction: column;
        min-width: 320px;
        min-height: auto;
        background-color: #fff;
        position: absolute;
        box-sizing: border-box;
        overflow: hidden;
        border-radius: 5px;
        box-shadow: 0 11px 15px -7px rgb(0 0 0 / 20%), 0 24px 38px 3px rgb(0 0 0 / 14%), 0 9px 46px 8px rgb(0 0 0 / 12%);
    }

    .cs-dialog_titel {
        height: 56px;
        background-color: transparent;
        color: rgba(0,0,0,.87);
        font-size: 20px;
        display: flex;
        align-items: center;
        padding-left: 16px;
        font-family: 'Roboto';
        font-weight: 500;
    }

    .cs-dialog_inhalt {
        padding: 16px;
        max-height: 350px;
        overflow-y: auto;
    }

    .cs-dialog_aktion {
        height: 56px;
        background-color: transparent;
        display: flex;
        justify-content: flex-end;
        padding: 0 16px;
    }

    .cs-dialog__btns {
        display: flex;
        align-items: center;
    }

    .cs-dialog__btn_xx {
        height: 36px;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: relative;
        display: -ms-flexbox;
        display: flex;
        margin-right: 8px;
    }

    .cs-dialog__btn {
        border: none;
        background: transparent;
        cursor: pointer;
        font-size: 14px;
        color: #6200ee;
        text-transform: uppercase;
        font-weight: 500;
        font-family: 'Roboto';
        letter-spacing: 1px;
    }
}
@media all and (min-width: 840px) {
    .cs-dialog--breit {
        width: 600px;
    }

    .cs-dialog--breit {
        left: auto;
        right: auto;
    }
}
