#__API__CHOOSE__PRINTER {
    position: absolute;
    top: 0;
    left: 0;
    width: 100svw;
    height: 100svh;
    z-index: 999998;
    display: flex;
    justify-content: center;
    align-items: center;
}

#__API__CHOOSE__PRINTER::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100svw;
    height: 100svh;
    background-color: rgba(0, 0, 0, .4);
}

.__API__CHOOSE__PRINTER__BODY {
    padding: 10px;
    width: fit-content;
    height: fit-content;
    background-color: white;
    z-index: 9999999;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

.__API__CHOOSE__PRINTER__BODY label {
    width: 100%;
    font-weight: bold;
}

.__API__CHOOSE__PRINTER__BODY select:hover {
    cursor: pointer;
}

.__API__CHOOSE__PRINTER__BODY select:focus {
    outline: none !important;
}

.__API__CHOOSE__PRINTER__FOOTER {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}