@font-face {
    font-family: Tajawal-Regular;
    src: url('./../fonts/Tajawal-Regular.ttf');
}

:root {
    --primary-color: red;
}


button.active {
    background-color: #c0d5fc !important;
    color: blue !important;
    border: 1px solid blue !important;
}

* {
    /* box-sizing: border-box;
    margin: 0;
    padding: 0; */

    font-size: 1rem;
    font-family: 'Tajawal-Regular';
}

input,
textarea,
select {
    color: black !important;
    /* font-weight: bold !important; */
}

.input-group label {
    width: 7.5rem;
    overflow: hidden;
}

#spinner,
.modal {
    /* backdrop-filter: blur(5px); */
    opacity: 1;
}

.dropdown-menu {
    transition: all .3s;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
    text-align: right;
}

.title {
    width: 100%;
    font-size: 1.2rem;
    /* font-weight: bold; */
    border-right: .3rem solid var(--bs-blue);
    border-bottom: .1rem dashed var(--bs-blue);
    padding: .5rem;
    padding-right: .5rem;
    text-shadow: 0 0 0.2rem rgb(179, 179, 179, 0.5);
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.btn i {
    font-size: 1.5rem;
}

.dotted {
    border: 1px dashed #e1e1e1;
    flex: 1;
    margin: 0 6px;
}

.dotted::after {
    content: '';
    height: 1px;
    color: gray;

}

/* -------------------------------------------------------- */
/* MOBILE SCREEN */
@media only screen and (max-width: 576px) {

    /* pagination */
    .pagination li.page-item {
        display: none
    }

    /* .pagination .page-item:first-child, */
    .pagination .page-item:nth-child( -n+4),
    .pagination .page-item:nth-last-child(-n+4),
    /* .pagination .page-item:last-child, */
    .pagination .page-item.active,
    .pagination .page-item.disabled {

        display: block;
    }

}

/* -------------------------------------------------------- */
@media (max-width: 991px) {



    /*
    table thead {
        display: none;

    }

    table,
    table tbody,
    table tr,
    table td {
        display: block;
        width: 100%;
    }

    table tr {
        margin-bottom: 15px;
        border: 1px solid #ededed;
        border-radius: 5px;
    }

    table tr:nth-child(odd) {
        background-color: #fbfbfb;
    }

    table td:nth-last-child(n+4) {
        text-align: right;
        padding-right: 30% !important;
        position: relative;
    }

    table td:nth-last-child(n+1)::before {
        content: attr(data-label);
        position: absolute;
        right: 0;
        width: 30% !important;
        padding-right: 15px;
        text-align: right;
        font-weight: bold;
    }
    */
}


@media print {
    .no-print {
        display: none !important;
        width: 0 !important;
        height: 0;
    }

    .printable {
        display: inline-block !important;
    }

    .printable-row {
        display: table-row !important;
    }

    .print-w-100 {
        width: 100% !important;
    }

}