/**************************************************/
/******************** seDialog ********************/
.seDialog {
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    box-sizing: border-box;
    display: none;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 11pt;
    height: 100%;
    left: 0;
    line-height: 1.5;
    overflow: auto;
    /*padding-top: 100px;*/
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}
  
.seDialog>div {
    background-color: #fefefe;
    border: 1px solid #888;
    box-shadow: black 3px 4px 4px;
    box-sizing: border-box;
    display: inline-block;
    left: 50%;
    padding: 32px 16px 16px 16px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.seDialog label { 
    display: inline-block;
}
.seDialog_buttons {
    display: block;
    text-align: right; 
    margin-top: 4px;
}
.seDialog_buttons input[type="button"]:not([class]), .seDialog_buttons input[type="submit"]:not([class]) {
    background-color: rgb(63,174,41);
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    font-weight: normal;
    line-height: 200%;
    margin: 0px;
    padding: 0px 12px;
    text-align: center;
    width: initial;
}
.seDialog_buttons input[type="button"]:not([class]):hover { background-color: rgb(94,199,73); }
.seDialog_buttons input[type="submit"]:not([class]) { background-color: rgb(0, 71, 186); }
.seDialog_buttons input[type="submit"]:not([class]):hover { background-color: rgb(0,129,201); }

  
.seDialog_close {
    background-color: rgb(38, 55, 128);
    border-radius: 50%;
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    height: 24px;
    line-height: 75%;
    padding-left: 1px;
    position: absolute;
    right: 2px;
    text-align: center;
    top: 2px;
    width: 24px;
    z-index: 1;
}
 
.seDialog_close:hover, .seDialog_close:focus {
    color: whitesmoke;
    text-decoration: none;
    cursor: pointer;
}
.seDialog_form {
    display: inline-block;
    position: relative;
    width: 100%;
}
.seDialog_form label:not([class]) {
    font-size: small;
    clear: left;
    float: left; 
    min-width: calc(100% / 4);
    margin: 10px 4px 0px 0px; 
    width: initial;
}
.seDialog_form input[type="text"]:not([class]) {
    border: 1px solid silver;
    border-radius: 3px;
    clear: right;
    float: left; 
    margin: 12px 0px 0px 0px;
    padding: 0px;
    width: calc(100% / 2);
}
.seDialog_form input[type="checkbox"]:not([class]) {
    clear: right;
    float: left; 
    margin: 12px 0px 0px 0px;
}
.seDialog_title {
    background-color: rgb(129, 100, 169);
    color: white;
    position: absolute;
    left: 0;
    padding: 4px;
    right: 0;
    text-align: initial;
    top: 0;

}

/**************************************************/
/******************** seMsgBox ********************/
.seMsgBox {
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    box-sizing: border-box;
    display: none;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 11pt;
    height: 100%;
    left: 0;
    line-height: 1.5;
    overflow: auto;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}
  
.seMsgBox>div {
    background-color: #fefefe;
    border: 1px solid #888;
    box-shadow: black 3px 4px 4px;
    box-sizing: border-box;
    display: inline-block;
    left: 50%;
    padding: 32px 16px 16px 16px;
    position: relative;
    top: 50%;
    transform: translate(-50%, -50%);
}

.seMsgBox label { 
    display: inline-block;
}
.seMsgBox_buttons {
    display: block;
    text-align: center; 
    margin-top: 4px;
}
.seMsgBox_close {
    background-color: rgb(38, 55, 128);
    border-radius: 50%;
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    height: 24px;
    line-height: 75%;
    padding-left: 1px;
    position: absolute;
    right: 2px;
    text-align: center;
    top: 2px;
    width: 24px;
    z-index: 1;
}
  
.seMsgBox_close:hover, .seMsgBox_close:focus {
    color: whitesmoke;
    text-decoration: none;
    cursor: pointer;
}

.seMsgBox_title {
    background-color: rgb(129, 100, 169);
    color: white;
    position: absolute;
    left: 0;
    padding: 4px;
    right: 0;
    top: 0;

}

/**************************************************/
/******************* seCheckBox *******************/
.seChkBox { 
    all: unset;
    display: flex; 
}
.seChkBox input[type="checkbox"] {
    all: unset;
    appearance: none;
    background-color: #eee;
    cursor: pointer;
    height: 25px;
    width: 25px;
}
.seChkBox input[type="checkbox"]::after {
    background-color: Canvas;
    content: '';
    display: block;
    height: 17px;
    margin: 3px auto;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    width: 17px;
}
.seChkBox input[type="checkbox"]:checked { background-color: #263780; }
.seChkBox input[type="checkbox"]:checked::after {
    background-color: white;
    transform: scale(1);
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.seChkBox input[type="checkbox"]:disabled {
    form-control-color: var(--form-control-disabled);
    color: #f0f0f0;
    cursor: not-allowed;
}
.seChkBox input[type="checkbox"]:hover { background-color: #ccc; }
.seChkBox label { 
    all: unset;
    font-size: unset !important;
    line-height: 2;
    margin-left: 6px;
}
.seChkBox label.right { 
    margin-left: 0;
    margin-right: 6px;
}

