:root {
    --radius: 2px;
    --radius_note: 2px;
    --text-color: #000000;
    --primary_color: #f3983e;
    --span_color: #b5b5b5;
    --btn_width: 137px;
    --btn_height: 38px;
    --dialog_width: 460px;
    --dialog_header_height: 50px;
    --dialog_min_height: calc(270px - var(--dialog_header_height));
}

.confirmBtn {
    background-image: url("/gui_cut/main_btn_confirm.svg");
    background-repeat: no-repeat;
    -webkit-box-shadow: inset -1px -1px 0 0 rgba(0, 0, 0, 0.4);
    -moz-box-shadow: inset -1px -1px 0 0 rgba(0, 0, 0, 0.4);
    box-shadow: inset -1px -1px 0 0 rgba(0, 0, 0, 0.4);
    -webkit-border-radius: var(--radius);
    -moz-border-radius: var(--radius);
    border-radius: var(--radius);
}

.confirmBtn:hover {
    opacity: 0.85;
}

.btnPOPOK {
    width: var(--btn_width);
    height: var(--btn_height);
    background: #f3983e;
    border-radius: 62px;
    background-repeat: no-repeat;
}

.btnPOPOK:hover {
    opacity: 0.85;
}

.btnPOPOK:active {
    background: #ea923b;
    background-repeat: no-repeat;
}

.btnPOPWarning {
    width: var(--btn_width);
    height: var(--btn_height);
    background-image: url("../images/popup_btn_delete.svg");
    background-repeat: no-repeat;
    border: 0px;
}

.btnPOPWarning:hover {
    opacity: 0.85;
}

.btnPOPWarning:disabled {
    background-image: url("../images/popup_btn_delete.svg");
    background-repeat: no-repeat;
    cursor: not-allowed;
}

.btnPOPWarning:focus,
.btnPOPWarning:active {
    background-image: url("../images/popup_btnf_delete.svg");
    background-repeat: no-repeat;
}

.btnPOPCancel {
    width: var(--btn_width);
    height: var(--btn_height);
    border: solid 1px #ff8600;
    background: transparent;
    border-radius: 62px;
}

.btnPOPCancel:hover {
    opacity: 0.85;
}

.btnPOPCancel:focus,
.btnPOPCancel:active {
    border: solid 1px #ff8600;
}

.textOK {
    width: var(--btn_width);
    height: var(--btn_height);
    line-height: var(--btn_height);
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 0;
    text-align: center;
    border: 0;
}

.textWarning {
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 0;
    text-align: center;
}

.textCancel {
    width: var(--btn_width);
    height: var(--btn_height);
    line-height: var(--btn_height);
    font-size: 16px;
    color: var(--primary_color);
    letter-spacing: 0;
    text-align: center;
    padding: 0;
}

.modal-content {
    -webkit-border-radius: var(--radius);
    -moz-border-radius: var(--radius);
    border-radius: var(--radius);
    background: white;
    width: 600px;
    min-height: 280px;
    margin-top: 60px;
}

.modal-header {
    width: var(--dialog_width);
    height: var(--dialog_header_height);
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 0;
    padding: 0;
    -webkit-border-top-left-radius: var(--radius);
    -moz-border-radius-topleft: var(--radius);
    border-top-left-radius: var(--radius);
    -webkit-border-top-right-radius: var(--radius);
    -moz-border-radius-topright: var(--radius);
    border-top-right-radius: var(--radius);
    background-color: var(--primary_color);
    border-color: transparent;
}

.modal-header-details {
    width: var(--dialog_width_large);
}

.title-header {
    width: var(--dialog_width);
    position: relative;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    display: inline-table;
    /* font-weight:500; */
    vertical-align: middle;
    letter-spacing: 0;
    background: transparent;
    margin: auto;
}

.modal-body {
    width: var(--dialog_width);
    min-height: var(--dialog_min_height);
    background: #ffffff;
    -webkit-border-radius: 0px 0px var(--radius) var(--radius);
    -moz-border-radius: 0px 0px var(--radius) var(--radius);
    border-radius: 0px 0px var(--radius) var(--radius);
}

.modal-body-details {
    width: var(--dialog_width_large);
}

.inputfieldPop {
    width: 100%;
    height: 42px;
    margin-left: 12px;
    border: 1px solid #979797;
    background: white;
    -webkit-border-radius: var(--radius);
    -moz-border-radius: var(--radius);
    border-radius: var(--radius);
    padding: 10px;
}

.delete_hint {
    font-size: 16px;
    color: var(--text-color);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.delete_frame {
    min-height: var(--dialog_header_height);
    max-height: 200px;
    color: var(--text-color);
    font-size: 16px;
    overflow-y: auto;
    overflow-x: hidden;
    background: white;
    margin-left: 90px;
    margin-right: 90px;
    border: 2px solid #979797;
    -webkit-border-radius: var(--radius);
    -moz-border-radius: var(--radius);
    border-radius: var(--radius);
}

.label-battery {
    padding-top: 6px;
    padding-bottom: 6px;
    text-align: right;
    width: 45.2%;
    height: 22px;
    font-size: 16px;
    color: var(--text-color);
    left: 10px;
}

.value-battery {
    padding-top: 6px;
    padding-bottom: 6px;
    left: 6px;
    width: 54.8%;
    height: 22px;
    font-size: 16px;
    color: var(--text-color);
    text-align: left;
    right: 10px;
}

.msg-popup {
    position: relative;
    text-align: center;
    width: auto;
    color: #363636;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.msg-popup-subject {
    height: 32px;
    font-size: 18px;
    padding-top: 6px;
}

.msg-popup-desc {
    min-height: 28px;
    font-size: 16px;
    z-index: 0;
    padding-top: 6px;
    white-space: pre;
    margin-top: 10px;
    line-height: 2;
}

.msg-popup-span {
    height: 20px;
    font-size: 12px;
    padding-top: 6px;
    color: var(--span_color);
}

#fullScreenModal {
    width: 100%;
    height: 2000px;
    background: rgb(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: -60px;
}

.btnPOPOK.disabled,
.btnPOPOK:disabled {
    height: var(--btn_height);
    margin-left: auto;
    margin-right: auto;
    /* background-image: url("/gui_cut/main_btnd_confirm.svg"); */
    /* background: red; */
    background-repeat: no-repeat;
    cursor: not-allowed;
}

.label-edit {
    padding-top: 6px;
    padding-bottom: 6px;
    text-align: right;
    width: 20%;
    height: 22px;
    font-size: 16px;
    color: var(--text-color);
    left: 10px;
}

.value-edit {
    padding-top: 6px;
    padding-bottom: 6px;
    left: 6px;
    width: 53%;
    height: 22px;
    font-size: 16px;
    color: var(--text-color);
    text-align: left;
    right: 10px;
}

.btnCancel {
    content: url("/gui_cut/popup_btn_close.svg");
    background-repeat: no-repeat;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.btnCancel:hover {
    content: url("/gui_cut/popup_btn_close_h.svg");
    background-repeat: no-repeat;
}

.btnCancel:focus {
    content: url("/gui_cut/popup_btn_close_f.svg");
    background-repeat: no-repeat;
}

.btnCancel:active {
    content: url("/gui_cut/popup_btn_close_c.svg");
    background-repeat: no-repeat;
}

.btnCancel.disabled,
.btnCancel:disabled {
    content: url("/gui_cut/popup_btn_close_d.svg");
    background-repeat: no-repeat;
    cursor: not-allowed;
}
