/*
 * @copyright Copyright (c) rexx systems GmbH
 *
 * @link https://www.rexx-systems.com
 *
 * This software is protected by copyright.
 *
 * It is not permitted to copy, present, send, lease and / or lend the website
 * or individual parts thereof without the consent of the copyright holder.
 *
 * Contravention of this law will result in proceedings under criminal
 * or civil law.
 *
 * All rights reserved.
 */

#confirmDialog {
    font-size: 14px;
    padding: 0 10px;
    display: none;
}

#confirmDialog #confirmation-text {
    margin: 15px 0;
    font-size: 15px;
}

.cv-confirm-dialog.ui-dialog .ui-dialog-buttonpane {
    padding: 5px 10px;
    margin-top: 10px;
    text-align: right;
}

.cv-confirm-dialog.ui-dialog .ui-dialog-buttonset button {
    display: inline-block;
    min-width: 100px;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
}

.cv-confirm-dialog.ui-dialog .ui-dialog-titlebar {
    padding: 12px 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.cv-confirm-dialog .ui-dialog-buttonset button:first-child {
    background: #0065BD;
    color: #FFFFFF;
}

.cv-confirm-dialog .ui-dialog-buttonset button:first-child:hover {
    background: #0051A9FF;
}

.cv-confirm-dialog {
    width: 30% !important;
    max-width: 600px;
    min-width: 300px;
}

@media (max-width: 1024px) {
    .cv-confirm-dialog {
        width: 50% !important;
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .cv-confirm-dialog {
        width: 90% !important;
        max-width: none;
        min-width: 0;
    }
}