html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* ¾Æ·¡´Â ¹öÆ°±×·ìÀÇ È°¼ºÈ­ ¶óÀÎ ¾ø¾Ö´Â°Å*/
.btn-check:checked + .btn,
.btn-check:focus + .btn,
.btn-check + .btn:focus,
.btn-check:active + .btn,
.btn-check + .btn:active {
    box-shadow: none !important;
    outline: none !important;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: 'NanumSquare', sans-serif;
}

.normal {
    font-weight: 400
}

.bold {
    font-weight: 700
}

.bolder {
    font-weight: 800
}

.light {
    font-weight: 300
}

.stickyPosition {
    top: 70px;
    position: sticky;
    z-index: 2;
}

/*Ã¼Å©¹Ú½ºÀÇ Å©±â*/
.form-check-input {
    transform: scale(2);
}

/*JS ¶óÀÌºê·¯¸® DataTableÀÇ °Ë»ö¾î ÇÊÅÍ À§Ä¡*/
.dt-search {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 10px;
    /*-webkit-appearance: none;*/ /* Safari ±âº» ½ºÅ¸ÀÏ Á¦°Å */
    /*-moz-appearance: none;*/ /* Firefox ±âº» ½ºÅ¸ÀÏ Á¦°Å */
    /*appearance: none;*/ /* ±âº» ½ºÅ¸ÀÏ Á¦°Å */
}

.dt-length .dt-input {
    color: black;
    border-radius: 15px;
}

.dt-search .dt-input {
    width: 200px !important;
    border: 1px solid #bdb7c7 !important;
    background-color: white;
    color: black;
    padding: 5px;
}

div.dt-container div.dt-length,
div.dt-container div.dt-info {
    text-align: left !important;
}

div.dt-container div.dt-search {
    text-align: center !important;
}

.dt-paging {
    display: flex;
    justify-content: end;
    
}
    .dt-paging nav {
        margin-top: 10px;
    }

    .dt-paging-button {
        margin: auto 3px;
        padding: 1px 7px;
        border: 1px solid #bdb7c7;
        border-radius: 5px;
        background-color: transparent;
        white-space: nowrap;
        -webkit-user-drag: none;
        user-select: none;
        color: black;
    }

.buttons-html5 {
    color: white;
    font-weight: bold;
    border-radius: 15px;
    background-color: seagreen;
    border: none;
    transition: all 0.3s;
}
    .buttons-html5:hover {
        transform: scale(1.2);
        transition: all 0.3s;
    }

.goBox {
    transition: all 0.3s;
}

.goBox:hover {
    transform: scale(1.1);
}

.add {
    border-color: #6f55d9;
    color: #6f55d9;
    transition: all 0.3s;
}

    .add:hover {
        transform: scale(1.1);
        color: #6f55d9;
    }

.copy {
    border-color: #81dec2;
    color: #81dec2;
    transition: all 0.3s;
}

    .copy:hover {
        transform: scale(1.1);
        color: #81dec2;
    }

.remove {
    border-color: #FC6769;
    color: #FC6769;
    transition: all 0.3s;
}

    .remove:hover {
        transform: scale(1.1);
        color: #FC6769;
    }

.reset {
    border-color: #bdb7c7;
    color: #bdb7c7;
    transition: all 0.3s;
}

    .reset:hover {
        transform: scale(1.1);
        color: #bdb7c7;
    }

.cancel {
    border-color: #dc3545;
    color: #dc3545;
    transition: all 0.3s;
}

    .cancel:hover {
        border-color: #dc3545;
        color: #dc3545;
        transition: all 0.3s;
    }

.confirm {
    /*border-color: #0c6efd;
    color: #0c6efd;*/
    background-color: #0c6efd;
    color: white;
    transition: all 0.3s;
}

    .confirm:hover {
        /*border-color: transparent;*/
        /*background-color: #0c6efd;*/
        transform: scale(1.1);
        /*color: #0c6efd;*/
        color: white;
    }

.btnRegion:hover {
    transform: scale(1.2);
    transition: all 0.2s;
}

.send:checked {
    background-color: dodgerblue;
    border-color: dodgerblue;
}

.recv:checked {
    background-color: indianred;
    border-color: indianred;
}

.add:focus,
.copy:focus,
.remove:focus,
.reset:focus,
.chkBox:focus,
.send:focus,
.recv:focus,
.qty:focus {
    box-shadow: none;
}

.qty:checked {
    background-color: #fc9403;
    border-color: #fc9403;
}

.pointer {
    cursor: pointer !important;
}

.noDrag {
    -webkit-user-drag: none;
    user-select: none;
    /*pointer-events: none;*/
    cursor: default;
}

.dataTableJs tbody tr:last-child td {
    border-bottom: 1px solid black !important;
}

@media (min-width: 992px) {
    .searchCard {
        width: 50%;
    }

    .confirm {
        width: 25%;
    }

    .dt-input {
        width: 20%;
    }
}

@media (max-width: 991px) {
    .searchCard {
        width: 100%;
    }

    .confirm {
        width: 50%;
    }

    .dt-input {
        width: 50%;
    }
}

@media print {
    @page {
        size: A4 portrait;
        margin: 0px !important;
    }

    body, body * {
        visibility: hidden;
        background: none !important;
    }

    .modal,
    .modal-dialog,
    .modal-content,
    .modal-body {
        all: unset !important;
        transform: none !important;
        position: static !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    
    .noPrint,
    #waittingSpin,
    #waittingSpin * {
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        display: none;
        visibility: hidden;
    }
    .modal-header {
        display: none;
    }

    .modal-dialog {
        margin: 0px;
    }

    #printArea, #printArea * {
        visibility: visible;
    }

    #printArea {
        width: 99.5vw;
        height: 100vh;
    }
}