
.cstm-dlgbx-blocker {
    background-color: rgba(255,255,255,.35);
    position: fixed;
    top: 0;
    left:0;
    width: 100vw;
    height: 100vh;
    display: block;
    align-items: center;
    justify-content: center;
}


.cstm-dlgbx-window {
    background-color: rgba(0,0,0,.89);
    color: #fff;
    display: inline-block;
    overflow-x: hidden;
    border-radius: 10px;
}


.cstm-dlgbx-window {
    padding: 15px;
    position: relative;
}

.cstm-dlgbx-window label {
    display: none;
}

.cstm-dlgbx-window.cstm-dlgbx-with-header {
    padding: 0;
}

.cstm-dlgbx-header-wrapper {
    position: relative;
}

.cstm-dlgbx-header {
    padding: 15px 20px;
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    background-color: rgba(255,255,255,.15);
}

.cstm-dlgbx-message {
    padding: 15px 20px;
    opacity: .8;
}


.cstm-dlgbx-input {
    padding: 0 20px 0 20px;
}

.cstm-dlgbx-input input, .cstm-dlgbx-input textarea {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 5px;
    color: #fff;
    font-family: sans-serif;
    padding: 10px 7px;
    min-width: 400px;
    resize: none;
}

.cstm-dlgbx-input input:hover, .cstm-dlgbx-input textarea:hover {
    border: 1px solid rgba(255,255,255,1);
}

.cstm-dlgbx-input input:focus, .cstm-dlgbx-input textarea:focus {
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255,255,255,1);
}


.cstm-dlgbx-buttons {
    padding: 5px 20px 30px 20px;
    text-align: center;
}

.cstm-dlgbx-buttons button {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 20px;
    color: #fff;
    font-family: sans-serif;
    padding: 10px 15px;
    min-width: 100px;
    margin-right: 10px;
    opacity: .7;
    cursor: pointer;
}

.cstm-dlgbx-buttons button:hover {
    opacity: 1;
}

.cstm-dlgbx-buttons button:active {
    transform: scale(0.95);
}
