<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.modal.fade.employee.modal {
    top: 0;
    left: 0;
    height: 100%;
    box-sizing: border-box;
    position: fixed;
}

.employee.modal .modal-dialog {
    top: calc((100% - 391px) / 2);
    left: calc((100% - 611px) / 2);

    box-sizing: border-box;

    /* Auto layout */

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 24px 0px 0px;
    gap: 24px;

    position: fixed;
    width: 611px;
    height: 391px;

    /* White */

    /* background: #FFFFFF; */
    /* border: 1px solid rgba(134, 132, 135, 0.4); */
    /* Card Shadow */

    box-shadow: 2px 4px 4px rgba(123, 122, 126, 0.25);
    margin: 0 auto;
}

.employee.modal .modal-content {
    max-width: 611px;
    min-width: 611px;
    width: 100%;

    max-height: 391px;
    min-height: 391px;
    height: 100%;

    margin: 0;
    /* bottom: 0; */
    left: 0;
    position: absolute;
    /* right: 0; */
    top: 0;
}

.employee.modal .modal-header {
    max-width: 611px;
    /* min-width: 611px; */
    width: 100%;

    height: 78px;
    min-height: 78px;
    max-height: 78px;
}

.employee.modal .modal-body {
    max-width: 611px;
    min-width: 611px;
    width: 100%;

    height: 313px;
    min-height: 313px;
    max-height: 313px;

    padding: 0;
}

.modal-title {
    /* width: 221px; */
    height: 30px;

    color: #000000;


    /* Inside auto layout */

    flex: none;
    order: 0;
    flex-grow: 0;
    margin-top: auto;
    margin-bottom: auto;

    margin-left: 30px;
}

.employee.modal .container-fluid,
.employee.modal .row.employee {
    max-width: 611px;
    min-width: 611px;
    width: 100%;

    height: 313px;
    min-height: 313px;
    max-height: 313px;

    overflow-y: hidden;
    /* padding-left: 20px; */
}

.employee.modal .col {
    height: 313px;
    min-height: 313px;
    max-height: 313px;
}

.col-md-5.ml-auto.image {
    padding-top: 41px;
    /* position: absolute; */
    width: 225px;
    height: 225px;
    /* left: 19px;
    top: 17.5px; */
}

.col-md-6.ml-auto.employee-info {

    /* Auto layout */

    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 12px 0px 0px;
    gap: 8px;
}

.employee.modal p {
    margin-bottom: 0;
}

.employee.modal .row .body-text-2:empty{
    display: none;
}

.employee.modal.show {
    background-color: rgba(0, 0, 0, 0.6);
}

.btn.btn-close.circle.employee {
    cursor: pointer;
    pointer-events: visible;
    fill: #ccd1d9;
    color: #ccd1d9;
    top: 16px;
    right: 20px;
    width: 40px;
    min-width: 0;
    height: 40px;
    border: none;
    background-color: transparent;
    overflow: hidden;
    transition: background-color .4s ease,border-color .4s ease;
    position: absolute;
    z-index: 1030;
}</pre></body></html>